0 purchases
chowicons
Chow Design Button #
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,
),
),
);
}
}
copied to clipboard
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
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.