modern_flutter_ui_kit 1.0.5
modern_flutter_ui_kit: ^1.0.5 copied to clipboard
A modern Flutter UI kit with beautiful components and themes.
import 'package:example/component_showcase_screen.dart';
import 'package:flutter/material.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
// This widget is the root of your application.
@override
Widget build(BuildContext context) {
return MaterialApp(
debugShowCheckedModeBanner: false,
title: 'Flutter Demo',
theme: ThemeData(
colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple),
),
home: ComponentShowcaseScreen(),
);
}
}