smart_flutter 1.0.0+1 copy "smart_flutter: ^1.0.0+1" to clipboard
smart_flutter: ^1.0.0+1 copied to clipboard

A bundle package for all smart flutter packages including widgets, utils, etc.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:smart_flutter/smart_flutter.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: " ")),
      ),
    );
  }
}
1
likes
150
points
67
downloads

Publisher

unverified uploader

Weekly Downloads

A bundle package for all smart flutter packages including widgets, utils, etc.

Homepage
Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

flutter, smart_flutter_utils, smart_flutter_widgets

More

Packages that depend on smart_flutter