Skip to content

Instantly share code, notes, and snippets.

@AbhishekDoshi26
Created February 2, 2022 13:42
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 AbhishekDoshi26/751626ff02c0c0ee722fbb40dd576301 to your computer and use it in GitHub Desktop.
Save AbhishekDoshi26/751626ff02c0c0ee722fbb40dd576301 to your computer and use it in GitHub Desktop.
import 'package:flutter/material.dart';
class Page2 extends StatelessWidget {
const Page2({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: const Text('Page 1'),
),
body: Center(
child: Image.asset('assets/dash.png'),
),
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment