skip to Main Content

Flutter – Show Icon after TextForm Field

Expanded( child: Column( mainAxisAlignment: MainAxisAlignment.start, children: [ SizedBox(height: 40), Row( children: [ SizedBox(width: 8), //MENU Icon( Icons.menu, size: 34, color: AppColors.black, ), Spacer(), //LOGO SizedBox( height: 60, width: 100, child: Image.asset( 'assets/icons/logo_transparent_main.png', )), SizedBox(width: 8) ], ), //SEARCHBAR Padding( padding:…

VIEW QUESTION
Back To Top
Search