Center(
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
// Text('Entry')
RaisedButton(
child: Text('Google'),
onPressed:() {
Navigator.push(
context,
MaterialPageRoute(
builder: (context) => WebView(
paramUrl: "https://google.com"
),
),
);
} ,
),
RaisedButton(
child: Text('Youtube'),
onPressed:() {
Navigator.push(
context,
MaterialPageRoute(
builder: (context) => WebView(
paramUrl: "https://youtube.com"
),
),
);
} ,
)
],
),
),
0 comments:
Post a Comment