skip to Main Content

How can I make a Flutter app responsive according to different screen size?

@override Widget build(BuildContext context) { return Scaffold( backgroundColor: Appcolors.white, appBar: AppBar( backgroundColor: Appcolors.white, elevation: 0, ), body: SingleChildScrollView( child: SafeArea( child: Column( children: [ const Padding( padding: EdgeInsets.fromLTRB(0, 30,0,0), child: Center(child: Text('Welcome Back!',style: TextStyle(fontSize: 30,fontWeight: FontWeight.w700),)), ), const SizedBox(height: 8),…

VIEW QUESTION
Back To Top
Search