flartdart 1.0.0
flartdart: ^1.0.0 copied to clipboard
A comprehensive Flutter-inspired UI framework for Dart Web applications with 100+ widgets, animations, forms, and media support.
example/main.dart
import 'package:flartdart/flartdart.dart';
void main() {
runApp(const ShowcaseApp());
}
class ShowcaseApp extends Widget {
const ShowcaseApp();
@override
String render(BuildContext context) {
return MaterialApp(
context: context,
title: 'Flart Kitchen Sink',
home: const HomePage(),
favicon: '/assets/flart_logo.png',
darkMode: true,
).render(context);
}
}
class HomePage extends StatefulWidget {
const HomePage();
@override
State<HomePage> createState() => _HomePageState();
}
class _HomePageState extends State<HomePage> {
int _counter = 0;
bool _switchValue = false;
bool _checkboxValue = false;
String _typedText = '';
void _incrementCounter() {
setState(() {
_counter++;
});
}
void _decrementCounter() {
setState(() {
_counter--;
});
}
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text('Flart Kitchen Sink'),
),
drawer: Drawer(
child: ListView(
padding: EdgeInsets.all(0),
children: [
Container(
height: 150,
decoration: BoxDecoration(color: FlartColors.blue),
alignment: Alignment.center,
child: Text(
'Flart Menu',
style: TextStyle(
color: '#FFFFFF',
fontSize: 24,
fontWeight: FontWeight.bold),
),
),
GestureDetector(
onTap: () => print('Menu item 1 tapped'),
child: Container(
padding: EdgeInsets.all(16),
child: Row(children: [
Icon(icon: Icons.home),
SizedBox(width: 16),
Text('Home')
]),
),
),
GestureDetector(
onTap: () => print('Menu item 2 tapped'),
child: Container(
padding: EdgeInsets.all(16),
child: Row(children: [
Icon(icon: Icons.settings),
SizedBox(width: 16),
Text('Settings')
]),
),
),
],
),
),
body: ListView(
padding: EdgeInsets.all(20),
children: [
_buildHeading('Animations & Navigation'),
Card(
padding: EdgeInsets.all(16),
child: Column(
children: [
Text('Navigation Demo'),
SizedBox(height: 10),
ElevatedButton(
child: Text('Push New Page'),
onPressed: () {
PageNavigator.seed(const HomePage());
PageNavigator.push(const SecondPage());
},
),
SizedBox(height: 20),
Text('Animation Demo'),
SizedBox(height: 10),
AnimatedContainerDemo(),
],
),
),
SizedBox(height: 20),
_buildHeading('Buttons & Interactions'),
Card(
padding: EdgeInsets.all(16),
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Row(
children: [
ElevatedButton(
child: Text('Elevated Button'),
onPressed: () => print('Elevated Pressed'),
),
SizedBox(width: 10),
Tooltip(
message: 'I am an icon button',
child: IconButton(
icon:
Icon(icon: Icons.favorite, color: FlartColors.red),
onPressed: () => print('Icon Pressed'),
),
),
],
),
SizedBox(height: 10),
GestureDetector(
onTap: _incrementCounter,
child: Container(
padding: EdgeInsets.symmetric(horizontal: 16, vertical: 8),
decoration: BoxDecoration(
color: FlartColors.blue.shade100,
borderRadius: BorderRadius.circular(4),
),
child: Text('Custom Gesture Button (Tap Me)'),
),
),
],
),
),
SizedBox(height: 20),
_buildHeading('State & Counters'),
Card(
padding: EdgeInsets.all(16),
child: Column(
children: [
Text('Counter: $_counter',
style: TextStyle(
fontSize: 24,
fontWeight: FontWeight.bold,
color: FlartColors.blue.hex)),
SizedBox(height: 10),
Row(
mainAxisAlignment: MainAxisAlignment.center,
children: [
ElevatedButton(
cssStyle: {'background-color': '#F44336'},
child: Text('Decrement'),
onPressed: _decrementCounter,
),
SizedBox(width: 10),
ElevatedButton(
child: Text('Increment'),
onPressed: _incrementCounter,
),
],
),
],
),
),
SizedBox(height: 20),
_buildHeading('Colors & Icons'),
Card(
padding: EdgeInsets.all(16),
child: Column(
children: [
Row(
mainAxisAlignment: MainAxisAlignment.center,
children: [
Icon(icon: Icons.star, color: FlartColors.amber, size: 32),
SizedBox(width: 10),
Icon(
icon: Icons.favorite, color: FlartColors.red, size: 32),
SizedBox(width: 10),
Icon(
icon: Icons.thumb_up,
color: FlartColors.blue,
size: 32),
SizedBox(width: 10),
Icon(
icon: Icons.check_circle,
color: FlartColors.green,
size: 32),
],
),
SizedBox(height: 20),
Text(
'This text uses FlartColors.purple',
style: TextStyle(
color: FlartColors.purple, fontWeight: FontWeight.bold),
),
SizedBox(height: 5),
Text(
'This text uses FlartColors.deepOrange',
style: TextStyle(
color: FlartColors.deepOrange,
fontWeight: FontWeight.bold),
),
],
),
),
SizedBox(height: 20),
_buildHeading('Inputs'),
Card(
padding: EdgeInsets.all(16),
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
TextField(
label: 'Type something',
placeholder: 'Enter text...',
onChanged: (val) {
setState(() {
_typedText = val;
});
},
),
SizedBox(height: 10),
Text('You typed: $_typedText'),
SizedBox(height: 20),
Row(
children: [
Switch(
value: _switchValue,
activeColor: FlartColors.green,
onChanged: (val) {
setState(() {
_switchValue = !_switchValue;
});
},
),
SizedBox(width: 8),
Text('Switch is ${_switchValue ? "ON" : "OFF"}'),
],
),
SizedBox(height: 10),
Row(
children: [
Checkbox(
value: _checkboxValue,
onChanged: (val) {
setState(() {
_checkboxValue = !_checkboxValue;
});
},
),
SizedBox(width: 8),
Text(
'Checkbox is ${_checkboxValue ? "Checked" : "Unchecked"}'),
],
),
],
),
),
SizedBox(height: 20),
_buildHeading('Text Selection'),
Card(
padding: EdgeInsets.all(16),
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Text(
'This text is NOT selectable (default default behavior). Try selecting me!'),
SizedBox(height: 10),
Text(
'This text IS selectable (selectable: true). Select me!',
selectable: true,
style: TextStyle(fontWeight: FontWeight.bold),
),
SizedBox(height: 10),
SelectableText(
'This is using the SelectableText widget.',
style: TextStyle(color: FlartColors.blue.hex),
),
],
),
),
SizedBox(height: 20),
_buildHeading('Grid Layout'),
GridView.count(
crossAxisCount: 3,
crossAxisSpacing: 10,
mainAxisSpacing: 10,
children: List.generate(
6,
(index) => Container(
height: 80,
decoration: BoxDecoration(
color: FlartColors
.blue.shades[100 * ((index % 9) + 1)] ??
FlartColors.blue),
child:
Text('Item $index', style: TextStyle(color: '#fff')),
)),
),
SizedBox(height: 20),
_buildHeading('Assets & Defaults'),
Card(
padding: EdgeInsets.all(16),
child: Column(
children: [
Text('Default Image Fallback (Empty Source):'),
SizedBox(height: 10),
FlartImage.network(
'', // Empty source should trigger default
width: 100,
height: 100,
fit: BoxFit.contain,
),
],
),
),
],
),
floatingActionButton: FloatingActionButton(
onPressed: _incrementCounter,
child: Icon(icon: Icons.add),
),
);
}
Widget _buildHeading(String text) {
return Container(
margin: EdgeInsets.only(bottom: 10),
child: Text(
text,
style: TextStyle(
fontSize: 18,
fontWeight: FontWeight.bold,
color: '#444',
),
),
);
}
}
class SecondPage extends Widget {
const SecondPage();
@override
String render(BuildContext context) {
return Scaffold(
appBar: AppBar(title: Text('Second Page')),
body: Center(
child: Column(
children: [
Text('You have navigated to the second page!'),
SizedBox(height: 20),
ElevatedButton(
child: Text('Go Back'),
onPressed: () {
PageNavigator.pop();
},
),
],
),
),
).render(context);
}
}
class AnimatedContainerDemo extends StatefulWidget {
@override
State<AnimatedContainerDemo> createState() => _AnimatedContainerDemoState();
}
class _AnimatedContainerDemoState extends State<AnimatedContainerDemo> {
late AnimationController _controller;
bool _toggled = false;
@override
void initState() {
_controller = AnimationController(
duration: Duration(seconds: 1), upperBound: 1.0, lowerBound: 0.0);
super.initState();
}
@override
Widget build(BuildContext context) {
return Column(
children: [
AnimatedContainer(
controller: _controller,
beginColor: FlartColors.blue,
endColor: FlartColors.red,
beginWidth: 100,
endWidth: 200,
beginHeight: 100,
endHeight: 100,
child: Center(
child:
Text('Animate', style: TextStyle(color: FlartColors.white))),
),
SizedBox(height: 20),
ElevatedButton(
child: Text(_toggled ? 'Reverse' : 'Forward'),
onPressed: () {
_toggled = !_toggled;
if (_toggled) {
_controller.forward();
} else {
_controller.reverse();
}
// Force rebuild regarding button text
setState(() {});
},
),
],
);
}
}