Skip to content

Instantly share code, notes, and snippets.

View cohenadair's full-sized avatar

Cohen Adair cohenadair

View GitHub Profile
import 'package:flutter/material.dart';
class NavigatorPage extends StatefulWidget {
const NavigatorPage({ Key key, this.child }) : super(key: key);
final Widget child;
@override
_NavigatorPageState createState() => _NavigatorPageState();
}