Last active
November 20, 2021 15:13
-
-
Save p32929/fa6dcdcbd093cb1a20735afdead005f7 to your computer and use it in GitHub Desktop.
This file contains 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(const StartingPoint()); | |
} | |
class StartingPoint extends StatelessWidget { | |
const StartingPoint({Key? key}) : super(key: key); | |
@override | |
Widget build(BuildContext context) { | |
return MaterialApp( | |
title: "Toolbar", | |
home: Scaffold( | |
appBar: AppBar( | |
title: const Text('Fayaz'), | |
), | |
body: const Center( | |
child: Text('Widget Playground'), | |
), | |
), | |
); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment