Skip to content

Instantly share code, notes, and snippets.

View GChanathip's full-sized avatar
🧑‍🍳
Cooking

GChanathip

🧑‍🍳
Cooking
View GitHub Profile
@GChanathip
GChanathip / hide_show_bottom_navbar.dart
Created May 31, 2025 15:13 — forked from Ethiel97/hide_show_bottom_navbar.dart
A Flutter code hiding navigation bar on scroll
import 'package:flutter/material.dart';
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) =>
MaterialApp(home: Scaffold(body: PhoneScreen()));