aswdc_flutter_pub 1.0.7 copy "aswdc_flutter_pub: ^1.0.7" to clipboard
aswdc_flutter_pub: ^1.0.7 copied to clipboard

ASWDC Package

example/lib/main.dart

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: 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,
      // ),
    );
  }
}