Skip to content

Instantly share code, notes, and snippets.

View GiorgioBertolotti's full-sized avatar

Giorgio Bertolotti GiorgioBertolotti

View GitHub Profile
@GiorgioBertolotti
GiorgioBertolotti / keybase.md
Created September 5, 2020 11:58
Keybase verification file

Keybase proof

I hereby claim:

  • I am giorgiobertolotti on github.
  • I am giorgiozem (https://keybase.io/giorgiozem) on keybase.
  • I have a public key ASAY1x2fuejlSZLYe5srj__biHR-hXRmpSspdFTZotzeqAo

To claim this, I am signing this object:

@GiorgioBertolotti
GiorgioBertolotti / .travis.yml
Last active August 29, 2020 12:04
Flutter app deploy on Github and Google Play Store, with Travis-CI
os: linux
language: generic
dist: xenial
addons:
apt:
packages:
- lib32stdc++6
jdk: oraclejdk8
sudo: false
@GiorgioBertolotti
GiorgioBertolotti / bottom_sheet_fix_status_bar.dart
Created June 27, 2019 07:42
Flutter Modal bottom sheet that supports full screen height
//Flutter Modal Bottom Sheet
//Modified by Giorgio Bertolotti
//Based on https://gist.github.com/crimsonsuv/b25d5ebd04236f9be2aa66accba19446
import 'dart:async';
import 'package:flutter/material.dart';
import 'package:meta/meta.dart';
const Duration _kBottomSheetDuration = const Duration(milliseconds: 200);