Тёмный

Flutter Tutorial - How To Hide Bottom Navigation Bar On Scroll | Hide/Show Animation 

HeyFlutter․com
Подписаться 203 тыс.
Просмотров 32 тыс.
50% 1

Опубликовано:

 

21 окт 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 61   
@HeyFlutter
@HeyFlutter Год назад
This might help you :) 👉 12 Week Flutter Training from Newbie to Expert: heyflutter.com Source Code: github.com/JohannesMilke/scroll_to_hide_example
@madhureddy7339
@madhureddy7339 3 года назад
Thanks Mike. I am new to flutter. For nearly a week, I was wondering how to hide bottom bar when Filters (ModalBottomSheet) are being displayed. This helped me to do my job. And it also helped me learning new widget, AnimatedContainer. Thanks again!
@reemosman2207
@reemosman2207 3 года назад
اقسم بالله انت عجييييب ... جزاك الله خير و هداك ان شاء الله 😍❤ You are just AMAZING ..thanks a lot ❤
@computerprogrammer9279
@computerprogrammer9279 2 года назад
Thanks a lot for your video Johannes Milke. It was very helpfull to my app
@goldenlife6166
@goldenlife6166 3 года назад
Great work johannes
@andresacm8453
@andresacm8453 2 года назад
That trick height: 0 is aweful bro, thank you again.
@nikhilkukreja8498
@nikhilkukreja8498 3 года назад
Thank you Johannes ✨
@ArivazhaganNagalingam
@ArivazhaganNagalingam 3 года назад
Thanks again
@crazy-man
@crazy-man 3 года назад
yes, just what you need
@guilhermeestevao2232
@guilhermeestevao2232 2 года назад
Nice video!
@blueice1364
@blueice1364 3 года назад
Thank you so much!
@tranhuy5799
@tranhuy5799 3 года назад
this is so awesome, thanks very much
@dennyraymond3753
@dennyraymond3753 3 года назад
Thanks so much🔥
@eNONO-ot4zh
@eNONO-ot4zh 3 года назад
Amazing vidéo. Thank u 👍
@SAMSHELDINTHOMAS
@SAMSHELDINTHOMAS 2 года назад
thanks bro
@guuleysowaligaa4951
@guuleysowaligaa4951 3 года назад
Can you put your course on udemy, it easy to pay from there, by the way i like the way you explain the code easy to understand Thanks.
@rahulagarwal968
@rahulagarwal968 3 года назад
Please make a video on how to use nearby location.... Example buy from stores within 10 km ... Or like in Happn app , people get match together when they cross each other. Thanks in advance !
@ivillage5872
@ivillage5872 2 года назад
Thank you very much bro for the Tuto I think there's a problem with the show() & hide() & this worked for me. " void listen(){ final direction = widget.controller.position.userScrollDirection; if(direction == ScrollDirection.forward){ setState(() { isVisible = true; }); }else if (direction == ScrollDirection.reverse){ setState(() { isVisible = false; }); } } "
@HeyFlutter
@HeyFlutter 2 года назад
Great, Thank You i village
@hashankannangara8723
@hashankannangara8723 3 года назад
Thats awsome ❤️
@arqamhussain8298
@arqamhussain8298 3 года назад
Nice video ! What about button ?
@g4lact1c
@g4lact1c 2 года назад
Hi, can this method be used to hide any Widget, at any location of the screen, rather than just the BottomNavigationBar? Also could it be used twice in one screen, for example where we have a List between a top container and bottom container, which we want to hide on scroll? Thanks!
@g4lact1c
@g4lact1c 2 года назад
@@HeyFlutter Hi, not really no! This is a completely different example... I want to use the ScrollToHideWidget that you show in the video, but for a custom header and also a custom footer.
@jigneshji3228
@jigneshji3228 3 года назад
wow thank you sir..
@jayshah9016
@jayshah9016 3 года назад
Can you please guide me for how to keep bottom navigation bar persistent across the app
@ivillage5872
@ivillage5872 2 года назад
Bro Using this in a Live App caused a serious performance issue in terms of scrolling up and down. It's lagging I hope you could come up with a new tuto by fixing that bug Thank you.
@HeyFlutter
@HeyFlutter 2 года назад
Thanks for the idea, i village! 🙂 I have added it to my list of ideas for future videos!
@achieverstv8244
@achieverstv8244 Год назад
When I scroll on windows, it does not hide the scrollbar. I used a singleChildScrollView. I used the google nav bar package instead of the bottom navigation bar
@HeyFlutter
@HeyFlutter Год назад
Thank You @achieverstv8244! Follow this link: stackoverflow.com/questions/67662141/flutter-how-to-hide-a-scrollbarthumb-in-scrollable-widgets-like-listview-build I hope you will get your answer 🙂
@kamalCode
@kamalCode 3 года назад
Sir, please how to use Streaming in flutter. Plz video
@javadmahmoodi2469
@javadmahmoodi2469 3 года назад
Hello. ScrollToHideWidget does not exist for me. How do I add and use it?
@sanketcpanchal3349
@sanketcpanchal3349 Год назад
Hi, How to hide navigation bar if move to another screen
@HeyFlutter
@HeyFlutter Год назад
Thank You sanket c panchal! Follow this link: stackoverflow.com/questions/58479299/how-to-hide-navigation-bar-after-moving-to-another-page-flutter I hope you will get your answer 🙂
@mohamedyashik1049
@mohamedyashik1049 3 года назад
How do you set TextField text to text received from JSON file? (Flutter)
@Chriscs7
@Chriscs7 Год назад
When I scroll down the menu still shows partially like being one layer under the list
@HeyFlutter
@HeyFlutter Год назад
Thank You @Chriscs7! Follow this link: stackoverflow.com/questions/50353640/hide-bottom-navigation-bar-on-scroll-in-flutter I hope you will get your answer 🙂
@annadarko6056
@annadarko6056 2 года назад
This works great. Unfortunately on Android 10 and higher my BottomNavigartionBar is covered by the Android system navigation bar. I don't want to just hide it, though. How do I check if the system navigation bar is visible, so I can increase the height of the BottomNavigationBar only in that case?
@HeyFlutter
@HeyFlutter 2 года назад
Thank You Anna Darko! Follow this link: stackoverflow.com/questions/28983621/how-to-detect-bottom-soft-navigation-bar-available-in-android-programmatically I hope you will get your answer 🙂
@annadarko6056
@annadarko6056 2 года назад
@@HeyFlutter Thank you for your effort. I was hoping to find a Flutter solution, but on the other hand I had to confront platform channels eventually anyway. So I'll give it a try. Again thanks a lot.
@hasaansaeed705
@hasaansaeed705 10 месяцев назад
When i move to the other screen of bottom navigation bar it should show but its remain hide
@HeyFlutter
@HeyFlutter 10 месяцев назад
Hey, @hasaansaeed705 🙂 you'll have to do that programmatically on navigation
@shashankrawat4437
@shashankrawat4437 Год назад
How to hide CupertinoTabBar within cupertinotabscafflod ?
@HeyFlutter
@HeyFlutter Год назад
Thank You Shashank Rawat! Follow this link: stackoverflow.com/questions/56229036/how-to-hide-cupertinotabbar-when-keyboard-is-displayed-or-how-to-make-keyboard I hope you will get your answer 🙂
@minhbq
@minhbq Год назад
my ScrollToHideWidget still appear in System Nav Bar of Ios Device
@HeyFlutter
@HeyFlutter Год назад
Thank you, @minhbq! 🙂. Please try to provide enough details with your question
@hexagonal7075
@hexagonal7075 Год назад
How to do this on Material 3 Nav bar
@HeyFlutter
@HeyFlutter Год назад
Thank You Calvin Paiva! Follow this link: stackoverflow.com/questions/52182384/flutter-how-to-hide-remove-title-of-bottomnavigationbaritem I hope you will get your answer 🙂
@BayesTVLOL
@BayesTVLOL 9 месяцев назад
Use hidable.
@HeyFlutter
@HeyFlutter 9 месяцев назад
Thank you, @BayesTVLOL! 🙂
@GianSandoval
@GianSandoval 2 года назад
HOLA PUEDES HACER LA ANIMACIÓN DE RU-vid QUE ES PARECIDO PERO EMPIEZA DESDE ABAJO, GRACIAS, BUEN VIDEO
@HeyFlutter
@HeyFlutter 2 года назад
You’re most welcome, Gian Sandoval! 🙂
@achieverstv8244
@achieverstv8244 Год назад
It doesn't work on windows
@HeyFlutter
@HeyFlutter Год назад
Thank you @achieverstv8244, make sure to follow the tutorial step by step 🙂
@mruduladdipalli5417
@mruduladdipalli5417 3 года назад
Woow!!!!
@patrizia1029
@patrizia1029 6 месяцев назад
This sounds so complicated… Can you make it easier to understand?
@HeyFlutter
@HeyFlutter 5 месяцев назад
Thanks for your feedback, @patrizia1029! 🙂
@qadirkrimov6448
@qadirkrimov6448 3 года назад
👍🏻👍🏻👍🏻
@dev.khaledali2754
@dev.khaledali2754 3 года назад
👌🏻
@Tunggaljagatchanel
@Tunggaljagatchanel 3 года назад
Salam 🙏🙏🙏👍🇲🇨
@deepakshah3108
@deepakshah3108 Год назад
It is great but this animation(slide up) is not good like TickerTape Application, Could you help with that @JohannesMilke
@HeyFlutter
@HeyFlutter Год назад
Hey 😊, @deepakshah3108! Check out this package: pub.dev/packages/animated_bottom_navigation_bar
Далее
Angry bird PIZZA?
00:20
Просмотров 7 млн
#kikakim
00:17
Просмотров 7 млн
Modern Bottom Nav Bar📱Flutter Tutorial ♡
8:15
Просмотров 177 тыс.
The Ultimate Flutter Web Scroll Animations
4:26
Просмотров 20 тыс.
Flutter Riverpod bottom navigation bar
16:55
Просмотров 6 тыс.
10x Your Speed With Flutter
8:04
Просмотров 59 тыс.
Top 30 Flutter Tips and Tricks
6:50
Просмотров 563 тыс.
Angry bird PIZZA?
00:20
Просмотров 7 млн