Skip to content

Instantly share code, notes, and snippets.

@buildbro
Created March 20, 2022 03:25
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 buildbro/a47952454a902f1fd82fc4599282617b to your computer and use it in GitHub Desktop.
Save buildbro/a47952454a902f1fd82fc4599282617b to your computer and use it in GitHub Desktop.
Dart code for a flutter hello world app
import 'package:flutter/material.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({Key? key}) : super(key: key);
// This widget is the root of your application.
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Demo',
theme: ThemeData(
primarySwatch: Colors.blue,
),
home: const MyHomePage(title: 'Flutter Demo Home Page'),
);
}
}
class MyHomePage extends StatefulWidget {
const MyHomePage({Key? key, required this.title}) : super(key: key);
final String title;
@override
State<MyHomePage> createState() => _MyHomePageState();
}
class _MyHomePageState extends State<MyHomePage> {
TextEditingController nameTextController = TextEditingController();
String greeting = "Hello World!";
void greetUser() {
if (nameTextController.text != null) {
String name = nameTextController.text;
setState(() {
greeting = "Hello $name";
});
}
}
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text(widget.title),
),
body: Column(children: [
SizedBox(
height: 16.0,
),
Text(greeting),
TextField(
controller: nameTextController,
),
MaterialButton(
onPressed: () => greetUser(),
child: Text("Submit"),
),
]));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment