Flutter: Difference between revisions

From Han Wiki
Jump to navigation Jump to search
add Programming Notes
mNo edit summary
 
(2 intermediate revisions by the same user not shown)
Line 13: Line 13:
''runApp()'' function takes the given Widget and makes it the root of the widget tree. The following makes the Center widget the root.
''runApp()'' function takes the given Widget and makes it the root of the widget tree. The following makes the Center widget the root.


<source lang="dart">
<source lang="dart" highlight="3">
void main() {
void main() {
runApp(
runApp(
Line 23: Line 23:
}
}
</source>
</source>
A widget's main job is to implement a '''build''' function, which describes the widget in terms of other, lower-level widgets.

Latest revision as of 01:31, 27 September 2018

Set up

Get all packages based on pubspec.yaml.

$ flutter packages get
Running "flutter packages get" in a1...                      1.0s


Programming Notes

runApp() function takes the given Widget and makes it the root of the widget tree. The following makes the Center widget the root.

void main() {
	runApp(
		Center: Text(
			'Hello, world!',
			textDirection: TextDirection.ltr
		)
	);
}

A widget's main job is to implement a build function, which describes the widget in terms of other, lower-level widgets.