Created
August 28, 2020 05:34
-
-
Save happyharis/35ab27490d6745f67a90c2bb9f6575c7 to your computer and use it in GitHub Desktop.
Safe Entry App
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'package:flutter/material.dart'; | |
void main() { | |
runApp( | |
MaterialApp( | |
home: Scaffold( | |
appBar: AppBar( | |
title: Text('Your Name'), | |
), | |
body: Center( | |
child: Image.network('https://i.ibb.co/0hXJpp1/download-1.gif'), | |
), | |
), | |
), | |
); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment