skip to Main Content

React Native Drawer – Cannot read Property "isConfigured" of undefined & [Reanimated] Failed to create a worklet

My Codes: /** * Sample React Native App * https://github.com/facebook/react-native * * @format */ import React from 'react'; import { createDrawerNavigator} from '@react-navigation/drawer'; import { NavigationContainer } from '@react-navigation/native'; import StockRoom from './StockRoom'; const Drawer = createDrawerNavigator(); function Refill(navigation: any):…

VIEW QUESTION

Flutter – Navigation drawer text parallel

How to make the children text align parallel to "Operator"? I want something like this Here my code @override Widget build(BuildContext context) { return Drawer( child: ListView( padding: EdgeInsets.zero, children: <Widget>[ _createHeader(context), ExpansionTile( childrenPadding: EdgeInsets.zero, expandedCrossAxisAlignment: CrossAxisAlignment.start, title: Text("operator".tr()), leading:…

VIEW QUESTION
Back To Top
Search