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

ASWDC Package

example/lib/main.dart

import 'package:aswdc_flutter_pub/aswdc_flutter_pub.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: SafeArea(
        child: Scaffold(
          body: DeveloperScreen(
            developerName: 'Mehul Bhundiya',
            mentorName: 'Prof. Mehul Bhundiya',
            exploredByName: 'ASWDC',
            isAdmissionApp: true,
            isDBUpdate: true,
            shareMessage: '',
            appTitle: 'Example',
            appLogo: 'assets/icons/ic_launcher.png',
          ),
        ),
      ),

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