0
You can redirect the user after clicking a button to a website, directly opening the browser or even a webview. From onPressed.
Container(
alignment: Alignment.center,
child: FlatButton(
onPressed: () => print('Forgot Password Button Pressed'),
padding: EdgeInsets.only(right: 0.0),
child: Text(
'Precisa de ajuda?',
style:TextStyle(
color: Colors.white.withOpacity(0.6),
fontSize: 15,
),
),
),
),