a_material 0.0.1 copy "a_material: ^0.0.1" to clipboard
a_material: ^0.0.1 copied to clipboard

Designed to appear before `cupertino.dart` in auto-import suggestions, enhancing developer productivity.

example/lib/main.dart

import 'package:a_material/a_material.dart';

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

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

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'a_material Example',
      home: Scaffold(
        appBar: AppBar(title: const Text('a_material Example')),
        body: Center(
          child: ElevatedButton(onPressed: () {}, child: const Text('Click')),
        ),
      ),
    );
  }
}
1
likes
160
points
39
downloads

Publisher

unverified uploader

Weekly Downloads

Designed to appear before `cupertino.dart` in auto-import suggestions, enhancing developer productivity.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

flutter, flutter_web_plugins

More

Packages that depend on a_material