v1.1.0numeric_keyboard
Android 및 iOS에서 간단한 숫자 키보드를 표시하는 Flutter 플러그인입니다.
94좋아요 80530일 다운로드150Pub 점수
AndroidiOSWebmacOSWindowsLinux
Android 및 iOS에서 간단한 숫자 키보드를 표시하는 Flutter 플러그인
{"sdk":"flutter"}{"sdk":"flutter"}아래는 영문 원문 스냅샷입니다. 최신 내용은 GitHub에서 확인하세요.
A simple numeric keyboard widget
Add numeric_keyboard: ^1.1.0 in your pubspec.yaml dependencies. And import it:
import 'package:numeric_keyboard/numeric_keyboard.dart';
Simply create a NumericKeyboard widget and pass the required params:
NumericKeyboard(
onKeyboardTap: _onKeyboardTap
)
_onKeyboardTap(String value) {
setState(() {
text = text + value;
});
}
NumericKeyboard(
onKeyboardTap: _onKeyboardTap,
textColor: Colors.red,
rightButtonFn: () {
setState(() {
text = text.substring(0, text.length - 1);
});
},
rightIcon: Icon(Icons.backspace, color: Colors.red,),
leftButtonFn: () {
print('left button clicked');
},
leftIcon: Icon(Icons.check, color: Colors.red,),
mainAxisAlignment: MainAxisAlignment.spaceEvenly
)
For a more detail example please take a look at the example folder.
Numeric keyboard:
https://raw.githubusercontent.com/huextrat/numeric_keyboard/master/example/screenshot.pngIf something is missing, feel free to open a ticket or contribute!