aswdc_flutter_pub 1.0.20 aswdc_flutter_pub: ^1.0.20 copied to clipboard
ASWDC Package
import 'package:aswdc_flutter_pub/aswdc_flutter_pub.dart';
import 'package:flutter/material.dart';
import 'package:sizer/sizer.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return Sizer(builder: (context, orientation, deviceType) {
return MaterialApp(
title: 'Flutter Demo',
theme: ThemeData(
primarySwatch: Utils().getMaterialColor(
const Color(0xFFAB8408),
),
),
home: SafeArea(
child: Scaffold(
body: SplashScreen(
appLogo: 'assets/icons/ic_launcher.png',
appName: 'Gujarat Engineering Admission',
appVersion: '1.9',
),),
),
/* SplashScreen(
appLogo: APP_LOGO,
appName: 'Quiz',
appVersion: '1.9',
),*/
// DeveloperScreen(
// developerName: 'Mehul Bhundiya',
// mentorName: 'Prof. Mehul Bhundiya',
// exploredByName: 'ASWDC',
// isAdmissionApp: false,
// shareMessage: '',
// appTitle: 'Example',
// appLogo: 'assets/icons/ic_launcher.png',
// )
);
});
}
}