kalogkit 0.0.3 copy "kalogkit: ^0.0.3" to clipboard
kalogkit: ^0.0.3 copied to clipboard

A premium, clean, and highly customizable UI component design system for Flutter, featuring beautiful colors, smooth typography, and refined feedback elements.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:kalogkit/kalogkit.dart';
import 'screens/home_screen.dart';

void main() {
  runApp(const KalogkitShowcaseApp());
}

/// Global notifier to manage theme mode state in the showcase application.
final ValueNotifier<ThemeMode> themeNotifier = ValueNotifier<ThemeMode>(ThemeMode.light);

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

  @override
  Widget build(BuildContext context) {
    return ValueListenableBuilder<ThemeMode>(
      valueListenable: themeNotifier,
      builder: (context, currentMode, child) {
        return MaterialApp(
          title: 'Kalogkit Showcase',
          debugShowCheckedModeBanner: false,
          theme: KalogkitTheme.lightTheme,
          themeMode: ThemeMode.light,
          home: const ShowcaseHomeScreen(),
        );
      },
    );
  }
}
0
likes
150
points
0
downloads

Documentation

API reference

Publisher

verified publisheragis.web.id

Weekly Downloads

A premium, clean, and highly customizable UI component design system for Flutter, featuring beautiful colors, smooth typography, and refined feedback elements.

Repository (GitHub)
View/report issues

License

MIT (license)

Dependencies

flutter, flutter_svg, google_fonts

More

Packages that depend on kalogkit