zephyr 0.0.1-alpha
zephyr: ^0.0.1-alpha copied to clipboard
A modern and cute design system, inspired by Zenly, Snapchat and Dualingo
import 'package:zephyr/zephyr.dart';
void main() {
runApp(MarshmallowApp());
}
class MarshmallowApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return ZephyrApp(
title: 'Marshmallow',
home: FirstScreen(),
);
}
}
class FirstScreen extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Chrome(
child: Center(
child: Text(
'ZEPHYR',
style: Theme.of(context).typography.title,
),
),
);
}
}