Skip to content

Instantly share code, notes, and snippets.

@branflake2267
branflake2267 / stful-page.liveTemplate
Last active February 11, 2025 10:08
Flutter - Basic Routing to Pages YouTube source code - This is the IntelliJ IDEA live template for a stateful widget for a page.
class $NAME$ extends StatefulWidget {
$NAME$({Key key, this.title}) : super(key: key);
static const String routeName = "/$NAME$";
final String title;
@override
_$NAME$State createState() => new _$NAME$State();
}