shadcn_flutter 0.0.1 shadcn_flutter: ^0.0.1 copied to clipboard
A port of shadcn to flutter
shadcn_flutter #
A set of widgets and utilities for building applications in flutter. Optimized for web applications. This is a port of the shadcn package to flutter.
Widget Catalog: shadcn_flutter
Usage #
import 'package:shadcn_flutter/shadcn_flutter.dart';
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return ShadcnApp(
title: 'My App',
theme: ThemeData(
brightness: Brightness.dark,
colorScheme: ColorSchemes.darkZync(),
radius: 0.5,
),
home: MyHomePage(),
);
}
}