aswdc_flutter_pub 1.0.10 aswdc_flutter_pub: ^1.0.10 copied to clipboard
ASWDC Package
import 'package:aswdc_flutter_pub/aswdc_flutter_pub.dart';
import 'package:example/utils/strings.dart';
import 'package:flutter/material.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Demo',
theme: ThemeData(
primarySwatch: Utils().getMaterialColor(
const Color(0xFFAB8408),
),
),
home: AdmobBannerAd(widget: Expanded(child: Container(color: Colors.amber,)),
adUnitId: 'ca-app-pub-3940256099942544/6300978111'),
/* 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: APP_LOGO,
// ),
);
}
}