12345678910111213141516171819202122232425262728293031323334 |
- import 'package:flutter/material.dart';
- import 'package:flutter_screenutil/flutter_screenutil.dart';
-
- class OrderHead extends StatelessWidget {
- const OrderHead({Key? key}) : super(key: key);
-
- @override
- Widget build(BuildContext context) {
- return Container(
- padding: const EdgeInsets.fromLTRB(15, 0, 15, 0),
- height: 55.w,
- decoration: const BoxDecoration(color: Colors.white),
- child: Row(
- children: [
- Padding(
- padding: const EdgeInsets.fromLTRB(0, 0, 8, 0),
- child: Image(
- image: const AssetImage('images/ordersListImga.png'),
- fit: BoxFit.cover,
- width: 18.w,
- ),
- ),
- Text(
- '订单列表',
- style: TextStyle(
- color: const Color(0xff222222),
- fontSize: 20.sp,
- fontWeight: FontWeight.bold),
- )
- ],
- ),
- );
- }
- }
|