Skip to content

Instantly share code, notes, and snippets.

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

Ethiel ADIASSA Ethiel97

🏠
Working from home
View GitHub Profile
@Ethiel97
Ethiel97 / hide_show_bottom_navbar.dart
Created May 30, 2025 15:38
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()));
# GitHub Action that will run prettier on the whole repo and commit the changes to the PR.
name: Prettier
on:
pull_request:
branches: [main]
jobs:
prettier:
runs-on: ubuntu-latest