mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2026-05-15 04:38:09 +00:00
feat(mobile/navigation) - removed stack dependency and updated animation options
This commit is contained in:
committed by
Saúl Ibarra Corretgé
parent
fc725c07e9
commit
79e648867d
@@ -1,7 +1,6 @@
|
||||
// @flow
|
||||
|
||||
import React from 'react';
|
||||
import { TouchableOpacity } from 'react-native-gesture-handler';
|
||||
import { Text, TouchableRipple } from 'react-native-paper';
|
||||
|
||||
import { Icon } from '../../../base/icons';
|
||||
@@ -48,14 +47,14 @@ const HeaderNavigationButton
|
||||
<>
|
||||
{
|
||||
src ? (
|
||||
<TouchableOpacity
|
||||
<TouchableRipple
|
||||
onPress = { onPress }
|
||||
style = { styles.headerNavigationButton }>
|
||||
rippleColor = { BaseTheme.palette.screen02Header }
|
||||
style = { styles.headerNavigationButton } >
|
||||
<Icon
|
||||
size = { 20 }
|
||||
src = { src }
|
||||
style = { styles.headerNavigationIcon } />
|
||||
</TouchableOpacity>
|
||||
size = { 24 }
|
||||
src = { src } />
|
||||
</TouchableRipple>
|
||||
) : (
|
||||
<TouchableRipple
|
||||
disabled = { disabled }
|
||||
|
||||
Reference in New Issue
Block a user