Browse Source

优化页面

ios
Jolie 4 months ago
parent
commit
1211133289
1 changed files with 23 additions and 17 deletions
  1. 40
      lib/pages/mine/user_info_page.dart

40
lib/pages/mine/user_info_page.dart

@ -224,31 +224,37 @@ class UserInfoPage extends StatelessWidget {
init: UserInfoController(),
builder: (controller) {
return Scaffold(
extendBodyBehindAppBar: true,
appBar: AppBar(
title: const Text(
'完善信息',
style: TextStyle(
fontSize: 20,
fontWeight: FontWeight.bold,
color: Color.fromRGBO(51, 51, 51, 1),
),
),
backgroundColor: Colors.transparent,
shadowColor: Colors.transparent,
elevation: 0,
centerTitle: true,
automaticallyImplyLeading: false,
),
body: Stack(
children: [
//
Positioned.fill(
child: Image.asset(
Assets.imagesBgInformation,
fit: BoxFit.cover,
),
// - AppBar
Image.asset(
Assets.imagesBgInformation,
fit: BoxFit.cover,
width: double.infinity,
height: double.infinity,
),
//
// AppBar高度空间
SafeArea(
child: SingleChildScrollView(
padding: const EdgeInsets.symmetric(horizontal: 20.0),
child: Column(
children: [
//
const SizedBox(height: 20),
const Text(
'完善信息',
style: TextStyle(
fontSize: 20,
fontWeight: FontWeight.bold,
color: Color.fromRGBO(51, 51, 51, 1),
),
),
const SizedBox(height: 25),
//

Loading…
Cancel
Save