Skip to content

Instantly share code, notes, and snippets.

View ASMohamedFaheemAnver's full-sized avatar
🏠
Working from home

FreeDoM ASMohamedFaheemAnver

🏠
Working from home
View GitHub Profile
@slightfoot
slightfoot / appbar_demo.dart
Created July 2, 2018 01:50
Demonstrate how to change the AppBar from within a PageView.
import 'package:flutter/material.dart';
void main() => runApp(TestApp());
class TestApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
theme: ThemeData(
primaryColor: Colors.green[900],
@derick-montague
derick-montague / sync-github-to-bitbucket.md
Last active December 19, 2025 15:34
Sync github repo to bitbucket repo

Set up remotes

setup local repo

mkdir myrepository
cd myrepository
git init

add bitbucket remote as "origin"