zephyr 0.0.1-alpha copy "zephyr: ^0.0.1-alpha" to clipboard
zephyr: ^0.0.1-alpha copied to clipboard

A modern and cute design system, inspired by Zenly, Snapchat and Dualingo

example/lib/main.dart

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,
        ),
      ),
    );
  }
}
0
likes
90
points
1
downloads

Publisher

unverified uploader

Weekly Downloads

A modern and cute design system, inspired by Zenly, Snapchat and Dualingo

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

flutter

More

Packages that depend on zephyr