build
Flutter initState() vs build()?
It's in the comment within the build state of the link you provided. Widget build(BuildContext context) { // TOD…
It's in the comment within the build state of the link you provided. Widget build(BuildContext context) { // TOD…
initState() is the first method called after a widget is created. This is similar to onCreate() in Android or viewDidLoad() …