skip to Main Content

How can I see last widget in Column which is wrapped in SingleChildScrollView even when keyboard is open in flutter?

Row( mainAxisAlignment: MainAxisAlignment.spaceBetween, children: [ const Text( 'Discount (%) :', style: TextStyle(fontSize: 14), ), Container( width: 40, height: 30, decoration: BoxDecoration( color: Colors.grey.shade200, border: const Border.fromBorderSide(BorderSide.none), borderRadius: BorderRadius.circular(10)), child: Center( child: TextField( onChanged: (text) { getDiscountedAmount(text); }, cursorHeight: 18, keyboardType:…

VIEW QUESTION
Back To Top
Search