enable keyboard provider globally

This commit is contained in:
Samuel Newman
2024-11-25 14:59:56 +00:00
parent 3a64c72293
commit e7538309f9
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -188,7 +188,7 @@ function App() {
<AppProfiler> <AppProfiler>
<GeolocationProvider> <GeolocationProvider>
<A11yProvider> <A11yProvider>
<KeyboardProvider enabled={false} statusBarTranslucent={true}> <KeyboardProvider statusBarTranslucent={true}>
<SessionProvider> <SessionProvider>
<PrefsStateProvider> <PrefsStateProvider>
<I18nProvider> <I18nProvider>
+1 -1
View File
@@ -92,7 +92,7 @@ export function Outer({
<Dialog.Handle /> <Dialog.Handle />
{/* Re-wrap with context since Dialogs are portal-ed to root */} {/* Re-wrap with context since Dialogs are portal-ed to root */}
<Context.Provider value={context}> <Context.Provider value={context}>
<Dialog.ScrollableInner label={_(msg`Menu`)} style={[a.py_sm]}> <Dialog.ScrollableInner label={_(msg`Menu`)}>
<View style={[a.gap_lg]}> <View style={[a.gap_lg]}>
{children} {children}
{isNative && showCancel && <Cancel />} {isNative && showCancel && <Cancel />}