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')
),
),
),
);

Just change the parent of your Scaffold , MaterialApp should be the parent of all of your widgets tree.
return MaterialApp(
home: Scaffold(
body: Container(
decoration: BoxDecoration(
image: DecorationImage(
image: AssetImage("assets/images/bg.png"),
fit: BoxFit.cover,
),
),
child: SingleChildScrollView(child: Text('Test')),
),
),
);
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With