middle widget second commit

main
zhuce 2024-02-23 18:05:43 +08:00
parent 3e76f59897
commit 2d9af261f9
1 changed files with 56 additions and 8 deletions

View File

@ -63,15 +63,23 @@ class _HomePageState extends State<HomePage> {
Row( Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween, mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [ children: [
const Row( Row(
children: [ children: [
Text( enabled
? const Text(
"接单中", "接单中",
style: TextStyle( style: TextStyle(
fontSize: 23, fontSize: 23,
fontWeight: FontWeight.bold, fontWeight: FontWeight.bold,
color: Colors.black), color: Colors.black),
) )
: const Text(
"停止接单",
style: TextStyle(
fontSize: 23,
fontWeight: FontWeight.bold,
color: Colors.grey),
)
], ],
), ),
Row( Row(
@ -173,6 +181,46 @@ class _HomePageState extends State<HomePage> {
style: TextStyle(fontSize: 12, color: Color(0xFF9B9B9B)), style: TextStyle(fontSize: 12, color: Color(0xFF9B9B9B)),
), ),
], ],
),
Container(
child: Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
Row(
children: [
Container(
margin: const EdgeInsets.only(right: 10),
child: const Icon(
Icons.circle,
size: 5,
),
),
const Text(
"宁波市鄞州区下应街道湖下路286号",
style: TextStyle(fontWeight: FontWeight.bold),
)
],
),
const Row(
crossAxisAlignment: CrossAxisAlignment.baseline,
textBaseline: TextBaseline.alphabetic,
children: [
Text(
"¥",
style: TextStyle(
fontSize: 13,
fontWeight: FontWeight.bold,
),
),
Text(
"50",
style:
TextStyle(fontSize: 32, fontWeight: FontWeight.bold),
),
],
)
],
),
) )
], ],
), ),