toggle_button 1.0.1
Usage Example #
import toggle_button.dart
import 'package:toggle_button/toggle_button.dart';
For Toggle Button. #
ToggleButton(
onChange: (status) {
},
),
For Customization. #
ToggleButton(
borderRadius: 40.0,
size: 15.0,
backgroundColor: Colors.indigo,
foregroundColor: Colors.white,
axis: ToggleButtonAlignment.horizontal,
deactivatedColor: Colors.grey,
onChange: (status) {
},
),
0.0.1 #
- Initial library For Toggle Button.
0.0.2 #
- Example Added.
1.0.0 #
- Stable Release.
1.0.1 #
- Bug Fixes
Toggle Button. #
import 'package:flutter/material.dart';
import 'package:toggle_button/toggle_button.dart';
void main() => runApp(MyApp());
class MyApp extends StatefulWidget {
@override
_MyAppState createState() => _MyAppState();
}
class _MyAppState extends State<MyApp> {
@override
void initState() {
super.initState();
}
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
appBar: AppBar(
title: const Text('Toggle Button example '),
),
body: Container(
alignment: Alignment.center,
child: Column(
crossAxisAlignment: CrossAxisAlignment.center,
children: <Widget>[
Container(
padding: EdgeInsets.only(top: 10.0, bottom: 10.0),
child: ToggleButton(
borderRadius: 40.0,
size: 15.0,
onChange: (sta) {
print(sta);
},
axis: ToggleButtonAlignment.horizontal,
),
),
Container(
padding: EdgeInsets.only(top: 10.0, bottom: 10.0),
child: ToggleButton(
borderRadius: 0.0,
size: 15.0,
onChange: (sta) {
print(sta);
},
axis: ToggleButtonAlignment.horizontal,
),
),
Container(
padding: EdgeInsets.only(top: 10.0, bottom: 10.0),
child: ToggleButton(
borderRadius: 0.0,
size: 15.0,
onChange: (sta) {
print(sta);
},
axis: ToggleButtonAlignment.verticle,
),
),
Container(
padding: EdgeInsets.only(top: 10.0, bottom: 10.0),
child: ToggleButton(
borderRadius: 0.0,
backgroundColor: Colors.indigo,
size: 30.0,
onChange: (status) {
print(status);
},
axis: ToggleButtonAlignment.horizontal,
),
)
],
),
)),
);
}
}
Use this package as a library
1. Depend on it
Add this to your package's pubspec.yaml file:
dependencies:
toggle_button: ^1.0.1
2. Install it
You can install packages from the command line:
with Flutter:
$ flutter pub get
Alternatively, your editor might support flutter pub get
.
Check the docs for your editor to learn more.
3. Import it
Now in your Dart code, you can use:
import 'package:toggle_button/toggle_button.dart';
Popularity:
Describes how popular the package is relative to other packages.
[more]
|
85
|
Health:
Code health derived from static analysis.
[more]
|
100
|
Maintenance:
Reflects how tidy and up-to-date the package is.
[more]
|
100
|
Overall:
Weighted score of the above.
[more]
|
92
|
Learn more about scoring.
We analyzed this package on Dec 11, 2019, and provided a score, details, and suggestions below. Analysis was completed with status completed using:
- Dart: 2.7.0
- pana: 0.13.1+4
- Flutter: 1.12.13+hotfix.4
Dependencies
Package | Constraint | Resolved | Available |
---|---|---|---|
Direct dependencies | |||
Dart SDK | >=2.0.0-dev.68.0 <3.0.0 | ||
flutter | 0.0.0 | ||
Transitive dependencies | |||
collection | 1.14.11 | 1.14.12 | |
meta | 1.1.8 | ||
sky_engine | 0.0.99 | ||
typed_data | 1.1.6 | ||
vector_math | 2.0.8 |