Guide
Start Building Your App
class NewComponent extends StatefulWidget { @override NewComponentState createState() => new NewComponentState(); . . . . . .}class NewComponentState extends State { . . . . . .​}How to navigate between screens
class AppRoutes {
static const newComponentViewRoute = "new_component_view_route";Last updated