You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
655 B
23 lines
655 B
1 year ago
|
import 'package:flutter/material.dart';
|
||
|
import 'package:doctor/common/splash_screen.dart';
|
||
|
import 'package:sizer/sizer.dart';
|
||
|
import 'package:flutter/services.dart';
|
||
|
|
||
|
void main () async {
|
||
|
// Set default home.
|
||
|
Widget _defaultHome = Splash();
|
||
|
WidgetsFlutterBinding.ensureInitialized();
|
||
|
SystemChrome.setPreferredOrientations([DeviceOrientation.portraitUp])
|
||
|
.then((_) {
|
||
|
runApp(Sizer(
|
||
|
builder: (context, orientation, deviceType) {
|
||
|
return MaterialApp(
|
||
|
title: 'Health Care',
|
||
|
theme: ThemeData.light(),
|
||
|
home:_defaultHome,
|
||
|
debugShowCheckedModeBanner: false,
|
||
|
);
|
||
|
},
|
||
|
));
|
||
|
});
|
||
|
}
|