stylish 0.1.0 copy "stylish: ^0.1.0" to clipboard
stylish: ^0.1.0 copied to clipboard

A set of UI elements and patterns with rules and guidelines.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:stylish/stylish.dart';

void main() => runApp(const MyApp());

class MyApp extends StatelessWidget {
  const MyApp({Key? key}) : super(key: key);

  @override
  Widget build(BuildContext context) => MaterialApp(
        home: Scaffold(
          body: Center(
            child: Container(
              color: Styles.c.dodgerBlue,
            ),
          ),
        ),
      );
}
1
likes
140
pub points
15%
popularity

Publisher

verified publisherg1joshi.dev

A set of UI elements and patterns with rules and guidelines.

Homepage
Repository (GitHub)
View/report issues

Documentation

API reference

License

BSD-3-Clause (LICENSE)

Dependencies

flutter

More

Packages that depend on stylish