FLUTTER UI LIBRARY
RiseUI
RiseUI is a Flutter UI library — opinionated defaults, composition, and native Material widgets. It brings a clean, minimal API to Flutter: variants, sizes, and smooth interaction states out of the box.
Goals
- Modern, minimal visuals with consistent spacing and typography
- Flutter-first APIs (widgets and composition)
- Theming via
RiseThemeDataandThemeExtension - Documented components with copy-paste Dart examples
Quick usage
MaterialApp(
theme: ThemeData.light().copyWith(
extensions: const [RiseThemeData.light],
),
home: RiseButton(
label: 'Continue',
onPressed: () {},
),
);Each widget has API notes and examples under Components in the docs — accordions, buttons, and more with motion tokens and sensible defaults.
Package: rise_ui: ^0.1.0 — add via pub.dev or path when you integrate in your Flutter app.