Skip to content

Instantly share code, notes, and snippets.

View anderscheow's full-sized avatar
:octocat:
Dreaming

Anders Cheow anderscheow

:octocat:
Dreaming
View GitHub Profile
@anderscheow
anderscheow / CustomApplication.kt
Last active January 3, 2019 02:08
A custom Application which include Multidex and Flutter initialization
package com.example
import android.app.Activity
import android.app.Application
import android.content.Context
import android.support.multidex.MultiDex
import io.flutter.view.FlutterMain
class CustomApplication : Application() {
@anderscheow
anderscheow / example.dart
Created April 16, 2019 00:37
Flutter navigation issue on iOS
import 'package:flutter/material.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
home: PageOne(),
);