bolt_ui_kit 1.0.2 copy "bolt_ui_kit: ^1.0.2" to clipboard
bolt_ui_kit: ^1.0.2 copied to clipboard

A comprehensive Flutter UI kit with pre-built components, themes, and utilities for rapid application development. Includes customizable buttons, forms, cards, and more.

example/lib/main.dart

// lib/main.dart
import 'package:flutter/material.dart';
import 'package:flutter_kit/flutter_kit.dart';
import 'package:get/get.dart';
import 'screens/home_screen.dart';

void main() async {
  WidgetsFlutterBinding.ensureInitialized();
  await FlutterKit.initialize(
    primaryColor: Color(0xFF6200EE),
    accentColor: Color(0xFF03DAC5),
    fontFamily: 'Poppins',
  );

  runApp(DemoApp());
}

class DemoApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return FlutterKit.builder(
      builder: () => GetMaterialApp(
        title: 'Flutter Kit Demo',
        theme: AppTheme.lightTheme(),
        darkTheme: AppTheme.darkTheme(),
        themeMode: ThemeMode.system,
        debugShowCheckedModeBanner: false,
        home: HomeScreen(),
      ),
    );
  }
}
6
likes
0
points
75
downloads

Publisher

unverified uploader

Weekly Downloads

A comprehensive Flutter UI kit with pre-built components, themes, and utilities for rapid application development. Includes customizable buttons, forms, cards, and more.

Repository (GitHub)
View/report issues

Topics

#ui-kit #components #widget #theme #design-system

Documentation

Documentation

License

unknown (license)

Dependencies

carousel_slider, dio, file_picker, fl_chart, flutter, flutter_screenutil, get, get_storage, google_fonts, image_cropper, image_picker, intl, logger, mobile_scanner, permission_handler, pinput, shared_preferences, table_calendar, ulid, url_launcher

More

Packages that depend on bolt_ui_kit