diff --git a/lib/pages/setting_page/about_page/about_page.dart b/lib/pages/setting_page/about_page/about_page.dart index 406108fe..1a95c0ea 100644 --- a/lib/pages/setting_page/about_page/about_page.dart +++ b/lib/pages/setting_page/about_page/about_page.dart @@ -21,13 +21,8 @@ class AboutPage extends StatelessWidget { return BeeScaffold( title: '关于小蜜蜂智慧社区', - body: Container( - color: Colors.white, - padding: EdgeInsets.only( - top: 72.w, - left: 36.w, - right: 35.w), - child: ListView( + body: ListView( + padding: EdgeInsets.all(32.w), children: [ Text( aboutText, @@ -40,7 +35,6 @@ class AboutPage extends StatelessWidget { ), ], ), - ), ); } } diff --git a/lib/pages/setting_page/settings_page.dart b/lib/pages/setting_page/settings_page.dart index 1f7ac859..5cf2562a 100644 --- a/lib/pages/setting_page/settings_page.dart +++ b/lib/pages/setting_page/settings_page.dart @@ -120,10 +120,11 @@ class _SettingsPageState extends State { title: '关于小蜜蜂智慧社区', onTap: () => AboutPage().to(), ), - _buildTile( - title: '邀请注册', - onTap: () => InvitePage().to(), - ), + //TODO 邀请注册 + // _buildTile( + // title: '邀请注册', + // onTap: () => InvitePage().to(), + // ), ].sepWidget( separate: Divider( indent: 32.w,