import 'package:flutter/material.dart'; import 'package:flutter_screenutil/flutter_screenutil.dart'; import 'package:fluttertoast/fluttertoast.dart'; import 'package:get/get.dart'; class UserInfo extends StatefulWidget { const UserInfo({Key? key}) : super(key: key); @override _UserInfo createState() => _UserInfo(); } class _UserInfo extends State { @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: [ Container( height: 92.h, decoration: BoxDecoration( color: const Color(0xFFFFFFFF), boxShadow: [ BoxShadow( color: const Color(0x1F000000), offset: Offset(0, 1.w), blurRadius: 0, ), ], ), child: Row(children: [ Text('666'), ]), ), ], ), ), ); } }