A set of widgets and utilities for building applications in flutter. This is a port of the shadcn UI package to flutter.
Documentation - pub.dev - Discord
flutter pub global activate shadcn_flutter_cli
flutter pub global run shadcn_flutter_cli:setup
flutter create my_app
cd my_app
flutter pub add shadcn_flutter
import 'package:shadcn_flutter/shadcn_flutter.dart';
void main() {
runApp(
ShadcnApp(
title: 'My App',
home: MyHomePage(),
theme: ThemeData(
colorScheme: ColorSchemes.darkZinc(),
radius: 0.5,
),
),
);
}
flutter run
- Android/iOS: Experimental
- Windows/Linux/MacOS: Stable
The project is funded by the community. If you find this project helpful, consider supporting its development by:
- Starring the GitHub repository.
- Contributing code, documentation, or bug reports.
- Sponsoring the project via GitHub Sponsors.
- Sharing the project with others who might find it useful.
Your support helps ensure the continued development and maintenance of this project. Thank you!