123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- import 'package:farmer_client/pages/main/widgets/OtherColumn.dart';
- import 'package:farmer_client/pages/main/widgets/UserAddress.dart';
- import 'package:farmer_client/pages/main/widgets/UserInfo.dart';
- import 'package:flutter/material.dart';
- import 'package:flutter_screenutil/flutter_screenutil.dart';
-
-
- class MainPage extends StatefulWidget {
- const MainPage({Key? key}) : super(key: key);
-
- @override
- State<MainPage> createState() => _MainPageState();
- }
-
- class _MainPageState extends State<MainPage> {
- @override
- Widget build(BuildContext context) {
- return Scaffold(
- resizeToAvoidBottomInset: false,
- appBar: AppBar(
- title: Text('我的'),
- leading: Icon(Icons.arrow_back_ios),
- backgroundColor: Color(0xff4ceebe),
- // backgroundColor: Colors.transparent,
- centerTitle: true,
-
- ),
- body:Container(
- alignment: Alignment.center,
- child: ListView(
- children: [
- Column(
- children: [
- UserInfo(),//头部,头像手机号姓名
- UserAddress(),//用户地址
- OtherColumn(),//功能菜单栏
- Container(
- height: 70.h,
- margin: EdgeInsets.only(top: 0, bottom: 40.0),
- alignment: Alignment.bottomCenter,
- decoration: BoxDecoration(
- boxShadow: [
- BoxShadow(
- blurRadius: 10, //阴影范围
- spreadRadius: 0.1, //阴影浓度
- color: Colors.grey.withOpacity(0.2), //阴影颜色
- ),
- ],
- ),
- child: SizedBox(
- width: 315.w,
- height: 49.h,
- child: ElevatedButton(
- onPressed: () {
- // _handelSubmit();
- print('用户点击了支付啊阿松大撒地方');
- },
- child: const Text(
- "退出登陆",
- style: TextStyle(
- fontSize: 18,
- color: Colors.black,
- fontWeight: FontWeight.bold),
- ),
- style: ButtonStyle(
- elevation: MaterialStateProperty.all(0),
- backgroundColor:
- MaterialStateProperty.all(const Color(0xFFFFFFFF)),
- shape: MaterialStateProperty.all(
- const RoundedRectangleBorder(
- borderRadius:
- BorderRadius.all(Radius.circular(24.4)))),
- ),
- ),
- ),
- ),
- ],
- ),
- ],
- )
-
- )
-
-
- );
- }
- }
|