Skip to content

Instantly share code, notes, and snippets.

View NeatSnippets's full-sized avatar

Neat Snippets NeatSnippets

View GitHub Profile
@NeatSnippets
NeatSnippets / home.dart
Created August 30, 2020 06:52
How to hide bottom navigation bar when scrolling in Flutter
import 'package:flutter/material.dart';
import 'package:flutter/rendering.dart';
class Home extends StatefulWidget {
Home({Key key}) : super(key: key);
@override
_HomeState createState() => _HomeState();
}