kitterial 1.0.0 copy "kitterial: ^1.0.0" to clipboard
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(),
    );
  }
}
1
likes
90
points
12
downloads

Publisher

unverified uploader

Weekly Downloads

A comprehensive Flutter package providing modern, customizable UI templates for common app screens with built-in animations and theming support.

Homepage

Documentation

API reference

License

BSD-2-Clause (license)

Dependencies

collection, flutter, meta, provider

More

Packages that depend on kitterial