Skip to content

Instantly share code, notes, and snippets.

@vijayinyoutube
Created July 21, 2022 18:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vijayinyoutube/a0816fb3be07ae19ff707835400300af to your computer and use it in GitHub Desktop.
Save vijayinyoutube/a0816fb3be07ae19ff707835400300af to your computer and use it in GitHub Desktop.
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: const Text('Connectivity Checker'),
),
body: Center(
child: ElevatedButton(
onPressed: () => Navigator.push(
context,
MaterialPageRoute(builder: (context) => const SecondPage()),
),
child: const Text('Next Page'),
),
),
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment