kitterial 1.0.0
kitterial: ^1.0.0 copied to clipboard
A comprehensive Flutter package providing modern, customizable UI templates for common app screens with built-in animations and theming support.
example/lib/main.dart
import 'package:flutter/material.dart';
import 'modern_theme.dart';
import 'screens/home_screen.dart';
void main() {
runApp(const ExampleApp());
}
class ExampleApp extends StatelessWidget {
const ExampleApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Kitterial Demo',
theme: ModernTheme.light(),
darkTheme: ModernTheme.dark(),
home: const HomeScreen(),
);
}
}