mix 0.0.2 copy "mix: ^0.0.2" to clipboard
mix: ^0.0.2 copied to clipboard

outdated

An expressive way to effortlessly build design systems in Flutter.

example/lib/main.dart

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(),
      ),
    );
  }
}
292
likes
0
pub points
91%
popularity

Publisher

verified publisherleoafarias.com

An expressive way to effortlessly build design systems in Flutter.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter, flutter_hooks, freezed_annotation

More

Packages that depend on mix