FLUTTER ECOSYSTEM

Rodiii/flutter_cupertino_radio_choice

하나의 값을 선택하기 위해 사용되는 라디오 버튼으로서의 Cupertino 버튼

flutter_cupertino_radio_choice 프로젝트 이미지
Stars
4
Forks
1
최근 푸시(UTC)
2021. 10. 7.
프로젝트 상태
활성
Christoph Rothermel GitHub avatar
GITHUB User

Christoph Rothermel ↗

rot|h|echUlm, Germany공식 웹사이트 ↗
언어DartRubyObjective-CJava

이 저장소가 배포한 패키지

사용 중인 의존성

의존성 목록 2 개
  • flutter{"sdk":"flutter"}
  • flutter_test개발 의존성{"sdk":"flutter"}

원본 README

아래는 영문 원문 스냅샷입니다. 최신 내용은 GitHub에서 확인하세요.

README 펼치기 / 접기

Flutter Cupertino Radio Choice

Cupertino buttons which are used as radio buttons in order to select one value.

Tutorial

A complete tutorial how to use CupertinoRadioChoice can be found here: Tutorial

Quick Usage

Just fill the required parameters of CupertinoRadioChoice and you're ready to go, e.g.:

CupertinoRadioChoice(
    choices: {'male' : 'Male', 'female' : 'Female', 'other': 'Other'},
    onChange: (selectedGender) {},
    initialKeyValue: 'male')

Please refer to the example for usage: Quick-Link

Example
https://github.com/Rodiii/flutter_cupertino_radio_choice/raw/master/example.png

Bugs/Requests

If you encounter any problems feel free to open an issue. If you feel the library is missing a feature, please raise a ticket on Github and I'll look into it. Pull Request are also welcome.