Skip to content

Instantly share code, notes, and snippets.

View maylortaylor's full-sized avatar

Matt Taylor maylortaylor

View GitHub Profile
@Andrious
Andrious / navigate_with_named_routes.dart
Last active September 29, 2022 22:34
Example of the 'routes table' and the pushedNamed() function.
import 'package:flutter/material.dart';
void main() => runApp(NavigateNamedRoutes());
class NavigateNamedRoutes extends StatelessWidget {
@override
Widget build(BuildContext context) => MaterialApp(
title: 'Named Routes Demo',
initialRoute: '/',
routes: {
@rodydavis
rodydavis / flutter_github_ci.yml
Last active February 25, 2024 05:40
Flutter Github Actions Build and Deploy Web to Firebase Hosting, iOS to Testflight, Android to Google Play (fastlane)
name: CI
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build_web: