React native button onpress 显示 2 个新按钮并使其他内容不可点击

React native button onpress show 2 new buttons and make other stuff unclickable

我想在按下 FloatingButton 后,再显示 2 个按钮。 虽然我显示了这 2 个按钮,但我想让此页面的其余部分不可点击, 用户必须按其中之一才能继续导航。 这是我的代码:

import React from 'react';
import { StyleSheet, Text, View, ScrollView } from 'react-native';
import FloatingButton from '../components/FloatingButton';

    const DuellScreen = () => {
    
        return (
        <View style={{ flex: 1 }}>
            <ScrollView style={styles.container2}>
                <Text style={{ flex: 1 }}>body</Text>
             </ScrollView>
            <View style={styles.container}>
                 <FloatingButton/>
            </View>
         </View>
        )
    }
    
    const styles = StyleSheet.create({
        container: {
            padding: 16,
            flex: 1,
            backgroundColor: '#fff',
            justifyContent: 'flex-end',
            alignItems: 'center'
        },
        container2: {
            padding: 16,
            flex: 5,
            backgroundColor: '#fff',
        },
    });
    
    
    export default DuellScreen

我该怎么做,尤其是按下按钮后可见的 2 按钮 + 让其他东西无法点击?

这个怎么样:

import React, { useState } from 'react';
import { StyleSheet, Text, View, ScrollView } from 'react-native';
import FloatingButton from '../components/FloatingButton';

const DuellScreen = (props) => {

    const [active, setActive] = useState(true);
    
    return (
        <View style={{ flex: 1 }}>
            <ScrollView style={styles.container2}>
                <Text style={{ flex: 1 }}>body</Text>
            </ScrollView>
            <View style={styles.container}>
                <FloatingButton onPress={active ? () => setActive(false) : () => {} } />

                {!active ? 
                    <View>
                        <FloatingButton onPress={() => props.navigation.navigate('OtherScreen')} />
                        <FloatingButton onPress={() => props.navigation.navigate('AnotherScreen')} />
                    </View>    
                : null}
            </View>
        </View>
    )
}