chowicons 0.1.2 copy "chowicons: ^0.1.2" to clipboard
chowicons: ^0.1.2 copied to clipboard

A libary for chow design system icons. A total of more then 1500 icons distributed

Chow Design Button #

Version Conventional Commits

Chow Design System Primary Button

Usage #

import 'package:chow_button/chow_button.dart';

void main() {
  runApp(const ChowApp());
}

class ChowApp extends StatefulWidget {
  const ChowApp({super.key});

  @override
  State<ChowApp> createState() => _ChowAppState();
}

class _ChowAppState extends State<ChowApp> {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: const Text('Chow Icons'),
        ),
        body: Icon(
          ChowIcons.chat_linear,
          color: Theme.of(context).colorScheme.onBackground,
          size: 24,
        ),
      ),
    );
  }
}

FAQs #

What is this? #

The button is the primary button for chow design system. It can be customized to any button for android, ios, web and desktop.# Chow-Primary-Button

1
likes
120
points
37
downloads

Publisher

unverified uploader

Weekly Downloads

A libary for chow design system icons. A total of more then 1500 icons distributed

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

flutter

More

Packages that depend on chowicons