flutterbootstrap5latest 0.0.4 flutterbootstrap5latest: ^0.0.4 copied to clipboard
This package is used to support the creation of responsive web applications with Flutter.
import 'package:flutter/material.dart';
import 'Auth/login.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatefulWidget {
const MyApp({super.key});
@override
State<MyApp> createState() => _MyAppState();
}
class _MyAppState extends State<MyApp> {
@override
Widget build(BuildContext context) {
return MaterialApp(
debugShowCheckedModeBanner: false,
theme: ThemeData(
useMaterial3: false,
scaffoldBackgroundColor: Colors.grey[300],
colorScheme:
ColorScheme.fromSwatch().copyWith(primary: Colors.deepPurple)),
home: Login(),
);
}
}