flutter_moon_ui_kit 0.0.2 copy "flutter_moon_ui_kit: ^0.0.2" to clipboard
flutter_moon_ui_kit: ^0.0.2 copied to clipboard

A modern, elegant, and scalable **Flutter UI Kit** inspired by the Moon design system. Built for **mobile**, **web**, and **desktop** using clean architecture, responsive layouts, and full theming support.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:flutter_moon_ui_kit/flutter_moon_ui_kit.dart';
import 'components/nav_layout.dart';

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

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

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Moon UI Kit Demo',
      debugShowCheckedModeBanner: false,
      theme: MoonTheme.light,
      darkTheme: MoonTheme.dark,
      themeMode: ThemeMode.system,
      home: const NavLayout(),
    );
  }
}
0
likes
110
points
36
downloads

Documentation

API reference

Publisher

unverified uploader

Weekly Downloads

A modern, elegant, and scalable **Flutter UI Kit** inspired by the Moon design system. Built for **mobile**, **web**, and **desktop** using clean architecture, responsive layouts, and full theming support.

Repository (GitHub)
View/report issues

License

MIT (license)

Dependencies

file_picker, flutter

More

Packages that depend on flutter_moon_ui_kit