|
|
@ -2,8 +2,10 @@ import 'package:flutter/cupertino.dart';
|
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
|
|
|
|
|
|
|
|
import 'package:bot_toast/bot_toast.dart';
|
|
|
|
import 'package:bot_toast/bot_toast.dart';
|
|
|
|
|
|
|
|
import 'package:flutter/services.dart';
|
|
|
|
import 'package:flutter_localizations/flutter_localizations.dart';
|
|
|
|
import 'package:flutter_localizations/flutter_localizations.dart';
|
|
|
|
import 'package:flutter_picker/flutter_picker.dart';
|
|
|
|
import 'package:flutter_picker/flutter_picker.dart';
|
|
|
|
|
|
|
|
import 'package:flutter_screenutil/flutter_screenutil.dart';
|
|
|
|
import 'package:fluwx/fluwx.dart';
|
|
|
|
import 'package:fluwx/fluwx.dart';
|
|
|
|
import 'package:get/get.dart';
|
|
|
|
import 'package:get/get.dart';
|
|
|
|
import 'package:jpush_flutter/jpush_flutter.dart';
|
|
|
|
import 'package:jpush_flutter/jpush_flutter.dart';
|
|
|
@ -20,6 +22,9 @@ import 'package:akuCommunity/utils/developer_util.dart';
|
|
|
|
|
|
|
|
|
|
|
|
void main() async {
|
|
|
|
void main() async {
|
|
|
|
WidgetsFlutterBinding.ensureInitialized();
|
|
|
|
WidgetsFlutterBinding.ensureInitialized();
|
|
|
|
|
|
|
|
SystemChrome.setSystemUIOverlayStyle(
|
|
|
|
|
|
|
|
SystemUiOverlayStyle(statusBarColor: Colors.transparent),
|
|
|
|
|
|
|
|
);
|
|
|
|
JPush jpush = new JPush();
|
|
|
|
JPush jpush = new JPush();
|
|
|
|
jpush.addEventHandler(
|
|
|
|
jpush.addEventHandler(
|
|
|
|
// 接收通知回调方法。
|
|
|
|
// 接收通知回调方法。
|
|
|
@ -80,7 +85,10 @@ class _MyAppState extends State<MyApp> {
|
|
|
|
FocusManager.instance.primaryFocus.unfocus();
|
|
|
|
FocusManager.instance.primaryFocus.unfocus();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
},
|
|
|
|
child: GetMaterialApp(
|
|
|
|
child: ScreenUtilInit(
|
|
|
|
|
|
|
|
designSize: Size(750, 1334),
|
|
|
|
|
|
|
|
allowFontScaling: true,
|
|
|
|
|
|
|
|
builder: () => GetMaterialApp(
|
|
|
|
title: '智慧社区',
|
|
|
|
title: '智慧社区',
|
|
|
|
debugShowCheckedModeBanner: false,
|
|
|
|
debugShowCheckedModeBanner: false,
|
|
|
|
theme: AppTheme.theme,
|
|
|
|
theme: AppTheme.theme,
|
|
|
@ -99,6 +107,7 @@ class _MyAppState extends State<MyApp> {
|
|
|
|
navigatorObservers: [BotToastNavigatorObserver()],
|
|
|
|
navigatorObservers: [BotToastNavigatorObserver()],
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
|
|
|
|
),
|
|
|
|
);
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|