Skip to content

Instantly share code, notes, and snippets.

View vishnumohanrk's full-sized avatar
🎯
Focusing

Vishnumohan R K vishnumohanrk

🎯
Focusing
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();
}