Skip to content

Instantly share code, notes, and snippets.

View mishaAe's full-sized avatar

Mike mishaAe

  • Saint-Petersburg
View GitHub Profile

Ubuntu

Add user

adduser {_USER_}
usermod -aG sudo {_USER_}n
passwd {_USER_}

Add repositories, uncomment lines containing multiverse, trusty-backports, and partner

@mishaAe
mishaAe / main.dart
Created April 9, 2020 22:22 — forked from MariaMelnik/main.dart
flutter: nested scrollable for bottom sheet
import 'package:flutter/material.dart';
const _persistantBottomSheetHeaderHeight = 30.0;
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(