FLUTTER ECOSYSTEM

404shades/Gender-Selection-Flutter

यह एक फ्लटर पैकेज है जिसका उपयोग लड़के के चयन के लिए किया जाता है, जो उपयोगकर्ताओं को शानदार एनीमेशन के साथ लिंग चुनने की अनुमति देता है।

लिंग-चयन-फ्लटर प्रोजेक्ट कवर
Stars
8
Forks
8
अंतिम पुश (UTC)
11 मार्च 2021
प्रोजेक्ट स्थिति
सक्रिय
Rohan Malik GitHub avatar
GITHUB User

Rohan Malik ↗

404Shades

Pune, India
भाषाएँDartObjective-CJava

तकनीकी विषय

इस रिपॉज़िटरी के पैकेज

उपयोग की गई निर्भरताएँ

निर्भरता सूची 2 आइटम
  • flutter{"sdk":"flutter"}
  • flutter_testडेवलपमेंट{"sdk":"flutter"}

मूल README

यह अंग्रेज़ी मूल स्नैपशॉट है। नवीनतम सामग्री GitHub पर देखें।

README खोलें / बंद करें

gender_selection

A Flutter package for gender selection. It is an aweome gender selection widget with cool gradients and animation effects

pub package Awesome Flutter Donate

Demo

https://raw.githubusercontent.com/404shades/Gender-Selection-Flutter/master/img/banner.jpg https://raw.githubusercontent.com/404shades/Gender-Selection-Flutter/master/img/demo.png

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

),

✌️ Contribution

  1. Fork the repositiry from package
  2. Create your own branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -m 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request

Getting Started

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.