-1

I need to get rid of the underlines that are present in the Flutter UI I made. I tried giving textStyle to this text but still doesn't get rid of the lines. I have added an image of how the output looks like below.

Any form of help will be appreciated, Thanks.

Output

void
  • 12,787
  • 3
  • 28
  • 42

2 Answers2

4

Wrap your Entire code with Material Widget

GJJ2019
  • 4,624
  • 3
  • 12
  • 22
1

Wrap your widget with Scaffold() and add your widgets to the body.

Nehil Koshiya
  • 1
  • 2
  • 6
  • 23