Skip to content

Instantly share code, notes, and snippets.

@happyharis
Created August 28, 2020 05:34
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 happyharis/35ab27490d6745f67a90c2bb9f6575c7 to your computer and use it in GitHub Desktop.
Save happyharis/35ab27490d6745f67a90c2bb9f6575c7 to your computer and use it in GitHub Desktop.
Safe Entry App
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