Skip to content

Instantly share code, notes, and snippets.

@p32929
Last active November 20, 2021 15:13
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 p32929/fa6dcdcbd093cb1a20735afdead005f7 to your computer and use it in GitHub Desktop.
Save p32929/fa6dcdcbd093cb1a20735afdead005f7 to your computer and use it in GitHub Desktop.
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