在行中使用列构件时面临冲突。
嗨,我在Flutter中实现下面提到的设计,但下面的图像中提到的一些错误。
我不想使用任何外部软件包来学习。提前感谢您的帮助。
期望值:-Expected
现实:-Messed up layout
下面是我现在使用的代码片段。
upload_screen.dart
import 'package:flutter/material.dart';
class StepProgressBar extends StatelessWidget {
const StepProgressBar({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return const Row(
// mainAxisAlignment: MainAxisAlignment.start,
crossAxisAlignment: CrossAxisAlignment.start,
children: [
StepWithPlaceHolder(label: "1", title: "Choose File"),
Expanded(child: Divider(thickness: 7,height: 5,)),
StepWithPlaceHolder(label: "2", title: "Finish")
]);
}
}
class StepWithPlaceHolder extends StatelessWidget {
final String label;
final String title;
const StepWithPlaceHolder(
{Key? key, required this.label, required this.title})
: super(key: key);
@override
Widget build(BuildContext context) {
return Column(
children: [
Container(
width: 55,
height: 55,
decoration: BoxDecoration(
border: Border.all(width: 2, style: BorderStyle.none),
shape: BoxShape.circle,
color: Colors.red,
),
child: Center(
child: Text(
label,
style: const TextStyle(
fontWeight: FontWeight.bold,
fontSize: 22,
color: Colors.white),
),
),
),
Text(
title,
style: const TextStyle(
fontWeight: FontWeight.w800,
fontSize: 20,
color: Colors.black,
),
),
],
);
}
}
}
2条答案
按热度按时间kfgdxczn1#
用
SizedBox
将Row
小部件 Package 成所需的高度。输出:
***注意:***如果您想在它周围添加一些边距,请使用
Container
而不是SizedBox
进行换行。zy1mlcev2#
我试图使它动态,所以你只需要改变列表,以管理您的意见,这里是代码
代码不是很优化,但你可以参考它