Skip to content

Instantly share code, notes, and snippets.

@jmichalenko
jmichalenko / main.dart
Created November 30, 2022 17:58
Sample Page Route Flutter
import 'package:flutter/material.dart';
void main() {
runApp(const MaterialApp(
title: 'Navigation Basics',
home: FirstRoute(),
));
}
class FirstRoute extends StatelessWidget {