gender_selection
लिंग चयन के लिए एक Flutter पैकेज। यह शानदार लिंग चयन विजेट है जिसमें शानदार ग्रेडिएंट और एनीमेशन प्रभाव हैं
यह एक फ्लटर पैकेज है जिसका उपयोग लड़के के चयन के लिए किया जाता है, जो उपयोगकर्ताओं को शानदार एनीमेशन के साथ लिंग चुनने की अनुमति देता है।
{"sdk":"flutter"}{"sdk":"flutter"}यह अंग्रेज़ी मूल स्नैपशॉट है। नवीनतम सामग्री GitHub पर देखें।
A Flutter package for gender selection. It is an aweome gender selection widget with cool gradients and animation effects
pub package Awesome Flutter Donate
Add this to your package's pubspec.yaml file:
dependencies:
gender_selection: "^0.0.8"
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
),
This project is a starting point for a Dart package, a library module containing code that can be shared easily across multiple Flutter or Dart projects.
For help getting started with Flutter, view our online documentation, which offers tutorials, samples, guidance on mobile development, and a full API reference.