mix 0.0.2 mix: ^0.0.2 copied to clipboard
An expressive way to effortlessly build design systems in Flutter.
import 'package:example/usage.dart';
import 'package:flutter/material.dart';
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
// This widget is the root of your application.
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Mix Demo',
theme: ThemeData(
primarySwatch: Colors.blue,
),
home: Scaffold(
backgroundColor: Colors.white.withOpacity(0.9),
appBar: AppBar(
title: Text('Mix Demo'),
),
body: UsageExample(),
),
);
}
}