chiclet 1.0.1
chiclet: ^1.0.1 copied to clipboard
With Chiclet, you can enjoy the convenience of highly customizable island-style buttons that are similar to those found in the popular language learning app Duolingo. These buttons can be tailored to [...]
example/lib/main.dart
import 'package:flutter/material.dart';
import 'package:chiclet/chiclet.dart';
void main() {
runApp(const Chiclet());
}
class Chiclet extends StatelessWidget {
const Chiclet({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Chiclet',
theme: ThemeData(
primarySwatch: Colors.cyan,
),
home: const MyHomePage(title: 'Chiclet'),
debugShowCheckedModeBanner: false,
);
}
}
class MyHomePage extends StatefulWidget {
final String title;
const MyHomePage({required this.title, Key? key}) : super(key: key);
@override
State<MyHomePage> createState() => _MyHomePageState();
}
class _MyHomePageState extends State<MyHomePage> {
@override
Widget build(BuildContext context) {
return SafeArea(
child: Scaffold(
body: Center(
child: Column(
crossAxisAlignment: CrossAxisAlignment.center,
mainAxisAlignment: MainAxisAlignment.spaceEvenly,
children: [
Row(
mainAxisAlignment: MainAxisAlignment.spaceEvenly,
children: [
ChicletOutlinedAnimatedButton(
onPressed: () {},
height: 64,
borderRadius: 0,
child: const Icon(Icons.keyboard_return)),
ChicletAnimatedButton(
onPressed: () {},
height: 64,
borderRadius: 0,
child: const Icon(Icons.keyboard_return)),
ChicletAnimatedButton(
onPressed: () {},
height: 64,
width: 140,
borderRadius: 0,
child: const Icon(Icons.keyboard_return)),
],
),
Row(
mainAxisAlignment: MainAxisAlignment.spaceEvenly,
children: [
ChicletOutlinedAnimatedButton(
onPressed: () {},
height: 64,
child: const Icon(Icons.keyboard_return_rounded)),
ChicletAnimatedButton(
onPressed: () {},
height: 64,
child: const Icon(Icons.keyboard_return_rounded)),
ChicletAnimatedButton(
onPressed: () {},
height: 64,
width: 140,
child: const Icon(Icons.keyboard_return_rounded)),
],
),
Row(
mainAxisAlignment: MainAxisAlignment.spaceEvenly,
children: [
ChicletOutlinedAnimatedButton(
onPressed: () {},
height: 64,
buttonType: ChicletButtonTypes.circle,
child: const Icon(Icons.keyboard_return_rounded)),
ChicletAnimatedButton(
onPressed: () {},
height: 64,
buttonType: ChicletButtonTypes.circle,
child: const Icon(Icons.keyboard_return_rounded)),
ChicletAnimatedButton(
onPressed: () {},
width: 140,
height: 64,
borderRadius: 64,
buttonType: ChicletButtonTypes.roundedRectangle,
child: const Icon(Icons.keyboard_return_rounded)),
],
),
Row(
mainAxisAlignment: MainAxisAlignment.spaceEvenly,
children: [
ChicletOutlinedAnimatedButton(
onPressed: () {},
height: 50,
width: 65,
buttonType: ChicletButtonTypes.oval,
child: const Icon(Icons.keyboard_return_rounded)),
ChicletAnimatedButton(
onPressed: () {},
height: 50,
width: 65,
buttonType: ChicletButtonTypes.oval,
child: const Icon(Icons.keyboard_return_rounded)),
ChicletAnimatedButton(
onPressed: () {},
height: 50,
width: 140,
buttonType: ChicletButtonTypes.oval,
child: const Icon(Icons.keyboard_return_rounded)),
],
),
],
),
),
),
);
}
}