flutter_andomie 0.4.0 copy "flutter_andomie: ^0.4.0" to clipboard
flutter_andomie: ^0.4.0 copied to clipboard

Collection of utils with advanced style and controlling system.

example/lib/main.dart

import 'package:flutter/material.dart';

void main() async {
  WidgetsFlutterBinding.ensureInitialized();
  runApp(const Application());
}

class Application extends StatelessWidget {
  const Application({super.key});

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Demo',
      debugShowCheckedModeBanner: false,
      theme: ThemeData(
        colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple),
        useMaterial3: true,
      ),
      home: const Home(),
    );
  }
}

class Home extends StatelessWidget {
  const Home({Key? key}) : super(key: key);

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      body: SafeArea(
        child: Container(),
      ),
    );
  }
}
3
likes
0
pub points
59%
popularity

Publisher

unverified uploader

Collection of utils with advanced style and controlling system.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

cloud_firestore, connectivity_plus, encrypt, firebase_auth, firebase_database, flutter, http, intl, shared_preferences

More

Packages that depend on flutter_andomie