gender selection
a flutter package for gender selection. it is an aweome gender_selection widget with cool gradients and animation effects.
installing
add this to your package’s pubspec.yaml file:
dependencies:
gender_selection: "^0.0.8"
simple usage
import 'package:gender_selection/gender_selection.dart';
genderselection(
maletext: "", //default male
femaletext: "", //default female
lineargradient: pinkredgradient,
selectedgendericonbackgroundcolor: colors.indigo, // default red
checkiconalignment: alignment.centerright, // default bottomright
selectedgendercheckicon: null, // default icons.check
onchanged: (gender gender){
print(gender);
},
equallyaligned: true,
animationduration: duration(milliseconds: 400),
iscircular: true, // default : true,
isselectedgendericoncircular: true,
opacityofgradient: 0.6,
padding: const edgeinsets.all(3),
size: 120, //default : 120
),
Comments are closed.