Zephyr

A modern and cute design system, inspired by Zenly, Snapchat and Dualingo. Implemented completely from scratch, without material package usage.

Figly mockup in Figma

Before usage you need to import Zephyr package:

import 'package:zephyr/zephyr.dart';

Usage

Define ZephyrApp as a root widget. It contains all essential components like theme, navigator, and routes.

// Example of [ZephyrApp] initialization
ZephyrApp(
    title: 'Example App',
    home: HomeScreen(),
    theme: ThemeData(
        backgroundColor: Colors.burple,
    ),
);

Libraries

zephyr