Kisan Majumdarkisanms.hashnode.dev·May 9, 2024Integration of all main three navigationsAppAllStack.tsx import React from 'react'; import {NavigationContainer} from '@react-navigation/native'; import {createDrawerNavigator} from '@react-navigation/drawer'; import {createStackNavigator} from '@react-navigation/stack'; import {createBotto...JavaScript
Manav Sarkarwww.allaboutflutter.com·Dec 4, 2023Create Drawer in Flutter: Drawer WidgetWe use Drawer in applications because we cant fit the tabs due to several reasons. A reason may be that the option is not suitable to be visible on application homepage or a common topic. Like an About Page, Contact page cannot be placed on the tabs,...88 readsdrawer
Emre Duzgunterminal3.hashnode.dev·Aug 28, 2023SVG wonders: How to enhance UX with interactive drawersIn the ever-evolving landscape of web design, the integration of Scalable Vector Graphics (SVGs) has introduced a new realm of creative possibilities. In this blog, we will explore the combination of SVGs and interactive drawers in detail, offering a...6 likesCSS
Ohiorenua Aigbojeohiscode.hashnode.dev·Jul 10, 2022Adding a Drawer to your Flutter AppA drawer can be add to a scafold My drawer screen class class DrawerScreen extends StatelessWidget { const DrawerScreen({Key? key}) : super(key: key); @override Widget build(BuildContext context) { return Drawer( child: ListView( ...141 readsFlutter Examples