Skip to content

Instantly share code, notes, and snippets.

View johnmuchow's full-sized avatar

John Muchow johnmuchow

View GitHub Profile
@johnmuchow
johnmuchow / rotating_cell.dart
Created December 28, 2018 20:23
Flutter Rotating Cell
import 'package:flutter/material.dart';
import 'dart:math' as math;
void main() {
runApp(
MaterialApp(
debugShowCheckedModeBanner: false,
home: Scaffold(
body: Home(),
),
@johnmuchow
johnmuchow / main.dart
Last active January 4, 2019 19:00 — forked from collinjackson/main.dart
PageView example with dots indicator
// Copyright 2017, the Flutter project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
import 'dart:math';
import 'package:flutter/material.dart';
void main() {
runApp(MyApp());
}
@johnmuchow
johnmuchow / animated_appbar.dart
Created January 21, 2019 13:40
This Flutter project creates an animated AppBar that includes animation of both a logo and included text.
import 'package:flutter/material.dart';
import 'package:flutter/animation.dart';
void main() => runApp(AppHome());
class AppHome extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
debugShowCheckedModeBanner: false,