smart_flutter_utils 1.0.5 copy "smart_flutter_utils: ^1.0.5" to clipboard
smart_flutter_utils: ^1.0.5 copied to clipboard

Utility wrappers and extensions to make flutter easy and smart.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:smart_flutter_utils/smart_flutter_utils.dart';

void main() => runApp(const App());

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

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      theme: ThemeData.from(
        colorScheme: const ColorScheme.light(),
      ),
      debugShowCheckedModeBanner: false,
      home: const HomePage(),
    );
  }
}

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

  @override
  Widget build(BuildContext context) {
    $debugPrint("Hello Example");
    return Scaffold(
      body: Center(
        child: Text("Hello".suffix("Example", infix: " ")),
      ),
    );
  }
}
3
likes
140
points
233
downloads

Publisher

unverified uploader

Weekly Downloads

Utility wrappers and extensions to make flutter easy and smart.

Homepage
Repository (GitHub)

Documentation

API reference

License

MIT (license)

Dependencies

bloc, collection, equatable, flutter, flutter_secure_storage, formz, get_storage, go_router, intl, smart_http, timeago, url_launcher

More

Packages that depend on smart_flutter_utils