Browse Source

ios更新合并

remove_uniapp
fmk 3 years ago
parent
commit
f92c5d952b
  1. 4
      lib/community/community_view/community_dynamic.dart
  2. 11
      lib/main.dart
  3. 15
      lib/mine/recharge_page.dart

4
lib/community/community_view/community_dynamic.dart

@ -776,8 +776,8 @@ class _CommunityDynamic extends State<CommunityDynamic> {
topLeft: const Radius.circular(25.0),
topRight: const Radius.circular(25.0))),
child: Container(
width: 100.w,
height: 100.h,
width: 130.w,
height: 130.h,
child: Column(
children: [
SizedBox(

11
lib/main.dart

@ -131,8 +131,7 @@ final XgFlutterPlugin xgFlutterPlugin = XgFlutterPlugin();
EventBus eventBus = EventBus(sync: true);
Route lastRoutePage;//
Route lastRoutePage;
class MyApp extends StatelessWidget {
final Locale appLocale;
final bool isFirst;
@ -188,10 +187,10 @@ class MyApp extends StatelessWidget {
),
onGenerateRoute: (settings) {
final String name = settings.name;
if(lastRoutePage?.settings?.name == name){//
if(lastRoutePage?.settings?.name == "/router/personal_page"//
&& lastRoutePage.navigator != null)//退
lastRoutePage.navigator.pop();//退退,
if(lastRoutePage?.settings?.name == name){
if(lastRoutePage?.settings?.name == "/router/personal_page"
&& lastRoutePage.navigator != null)
lastRoutePage.navigator.pop();
}
final Function pageContentBuilder = routers[name];

15
lib/mine/recharge_page.dart

@ -143,6 +143,7 @@ class _RechargePage extends State<RechargePage> {
color: Color(0xFFFFFFFF),
child: Stack(
children: [
Column(children: [
SingleChildScrollView(
physics: BouncingScrollPhysics(),
child: Container(
@ -183,16 +184,7 @@ class _RechargePage extends State<RechargePage> {
// setState(() {});
// },
// ),
Padding(
padding: EdgeInsets.only(top: 26, bottom: 28),
child: Text(
S.of(context).chongzhi,
style: TextStyle(
fontSize: 28.sp,
color: Color(0xFF181818),
fontWeight: MyFontWeight.semi_bold),
),
),
SizedBox(height:20,),
Row(
children: [
Expanded(
@ -314,7 +306,8 @@ class _RechargePage extends State<RechargePage> {
],
),
),
),
)
],),
Align(
alignment: Alignment.bottomCenter,
child: GestureDetector(

Loading…
Cancel
Save