jui 0.3.0 copy "jui: ^0.3.0" to clipboard
jui: ^0.3.0 copied to clipboard

A Flutter UI component library with four modules, general, data display, data entry, and feedback. Includes buttons, labels, text, headers, containers, and placeholder

example/lib/main.dart

import 'package:example/splash_page.dart';
import 'package:flutter/material.dart';

import 'demo_router.dart';

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

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

  // This widget is the root of your application.
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Demo',
      theme: ThemeData(
        primarySwatch: Colors.blue,
      ),
      routes: demoRouterMap,
      home: const MainPage(),
    );
  }
}
9
likes
160
points
57
downloads

Publisher

unverified uploader

Weekly Downloads

A Flutter UI component library with four modules, general, data display, data entry, and feedback. Includes buttons, labels, text, headers, containers, and placeholder

Repository (GitHub)
View/report issues

Documentation

API reference

License

BSL-1.0 (license)

Dependencies

flutter, universal_platform

More

Packages that depend on jui