Last active
December 20, 2022 07:22
-
-
Save MadeBugs/f0efe84872e6f9b2d4a3cc3eb589565f to your computer and use it in GitHub Desktop.
输入框
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
TextField( | |
keyboardType: TextInputType.number, | |
inputFormatters: [FilteringTextInputFormatter.allow(RegExp(r'[0-9]'))], | |
decoration: InputDecoration( | |
hintText: "入れ替えの比例", | |
hintStyle: TextStyle(fontSize: 14, color: AppColors.color_cccccc), | |
fillColor: AppColors.color_f6f6f6, | |
filled: true, | |
border: | |
OutlineInputBorder(borderRadius: BorderRadius.circular(6), borderSide: BorderSide.none), | |
contentPadding: EdgeInsets.only(left: 12, bottom: 2)), | |
), |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment