flutterbootstrap5latest 0.0.4 copy "flutterbootstrap5latest: ^0.0.4" to clipboard
flutterbootstrap5latest: ^0.0.4 copied to clipboard

This package is used to support the creation of responsive web applications with Flutter.

example/lib/main.dart

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(),
    );
  }
}
0
likes
150
points
36
downloads

Publisher

verified publisherpostboxat18.blogspot.com

Weekly Downloads

This package is used to support the creation of responsive web applications with Flutter.

Repository (GitHub)

Documentation

API reference

License

MIT (license)

Dependencies

collection, flutter, intersperse

More

Packages that depend on flutterbootstrap5latest