skip to Main Content

Flutter – TextField Hides Behind Keyboard

There is a bottomsheet in flutter code - bottomsheet contains an TextField , While clicking on TextField , Keyboard Covers the TextFeild. Below is the code for bottom sheet showModalBottomSheet( context: context, isScrollControlled: true, builder: (BuildContext buildContext) { return SizedBox(…

VIEW QUESTION

Flutter Text Field Prefix text Issue

Not able to align the prefix text along with the input text ? Padding( padding: const EdgeInsets.only(top: 40), child: TextField( controller: amountController, maxLines: 1, textAlign: TextAlign.end, keyboardType: TextInputType.number, inputFormatters: [ FilteringTextInputFormatter.digitsOnly, LengthLimitingTextInputFormatter(25), ], style: const TextStyle(color: AppColors.textColor, fontSize: 14), decoration:…

VIEW QUESTION
Back To Top
Search