I am new to Flutter. I am preparing Login page. In the same, I am using a Text widget. For that i am getting Yellow double underline.
I am trying to fix with Scaffold as route layout
return new Scaffold(
body: Container(
decoration: BoxDecoration(
image: DecorationImage(
image: AssetImage("assets/images/bg.png"),
fit: BoxFit.cover,
),
),
child: MaterialApp(
home: SingleChildScrollView(
child:Text('Test')
),
),
),
);