123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- import 'package:flutter/material.dart';
- import 'package:flutter_screenutil/flutter_screenutil.dart';
-
- class AddressList extends StatefulWidget {
- const AddressList({Key? key}) : super(key: key);
-
- @override
- _AddressList createState() => _AddressList();
- }
-
- class _AddressList extends State<AddressList> {
- @override
- Widget build(BuildContext context) {
- return Scaffold(
- appBar: AppBar(
- elevation: 0,
- centerTitle: true,
- backgroundColor: Colors.white,
- title: Text(
- '地址管理',
- style: TextStyle(
- color: Colors.black,
- fontSize: 17.sp,
- letterSpacing: 2,
- fontWeight: FontWeight.bold),
- ),
- ),
- body: Container(
- padding: EdgeInsets.all(15.w),
- child: Column(
- children: [
- Text('地址'),
- GestureDetector(
- onTap: () {},
- child: Container(
- width: 345.w,
- height: 49.h,
- decoration: BoxDecoration(
- borderRadius: BorderRadius.all(Radius.circular(10.w)),
- color:Color(0xFFFF703B),
- ),
- child: Text(
- '+新增收货地址',
- style: TextStyle(
- color: Colors.white,
- fontWeight: FontWeight.bold,
- fontSize: 20.sp
- ),
- ),
- ),
- ),
- ],
- ),
- ),
- );
- }
- }
|