flutter_shadcnui 0.0.1 flutter_shadcnui: ^0.0.1 copied to clipboard
Port for shadcn/ui in Flutter
import 'package:flutter/material.dart';
import 'package:flutter_shadcnui/flutter_shadcnui.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Demo',
theme: ThemeData(
colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple),
useMaterial3: true,
),
home: const MyHomePage(title: 'Flutter Demo Home Page'),
);
}
}
class MyHomePage extends StatefulWidget {
const MyHomePage({super.key, required this.title});
final String title;
@override
State<MyHomePage> createState() => _MyHomePageState();
}
class _MyHomePageState extends State<MyHomePage> {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
backgroundColor: Theme.of(context).colorScheme.inversePrimary,
title: Text(widget.title),
),
body: const Column(
children: [
SCUIAccordionItem(
child: SCUIAccordionTrigger(
isOpen:
true, // Set to true if the accordion should be open initially
child: Text('Accordion Trigger'),
),
),
SCUIAccordionContent(
isOpen:
true, // Set to true if the accordion should be open initially
child: Text('Accordion Content'),
),
],
));
}
}