a_material 0.0.1
a_material: ^0.0.1 copied to clipboard
Designed to appear before `cupertino.dart` in auto-import suggestions, enhancing developer productivity.
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')),
),
),
);
}
}