Rn使用FlatList导航栏自动回到中间

js 复制代码
import { useState, useRef } from 'react'
import { FlatList, View, Text, StyleSheet, TouchableOpacity } from 'react-native'

const Center = () => {
    const tabs = ["语文", "数学", "英语", "政治", "历史", "地理"]
    const [active, setActive] = useState(0)
    const flatRef = useRef()

    const activeTab = (index) => {
        setActive(index)
        flatRef.current.scrollToIndex({ viewPosition: 0.5, index: index, animated: true })
    }

    return (
        <>
            <View style={styles.nav}>
                <FlatList data={tabs} ref={flatRef} horizontal showsHorizontalScrollIndicator={false}
                    renderItem={({ item, index }) => (
                        <TouchableOpacity key={index} onPress={() => activeTab(index)}
                            style={[
                                styles.nav_item,
                                active == index && styles.nav_item_active,
                                tabs.length - 1 == index && styles.nav_item_last
                            ]}>
                            <Text style={active == index && styles.nav_item_active_text}>
                                {item}
                            </Text>
                        </TouchableOpacity>
                    )}
                />
            </View>
        </>
    )
}

const styles = StyleSheet.create({
    nav: {
        height: 45,
        flexDirection: "row",
        alignItems: "center",
        borderBottomColor: "#eee",
        borderBottomWidth: 1,
        paddingHorizontal: 10
    },
    nav_item: {
        paddingHorizontal: 20,
        paddingVertical: 4,
        borderColor: "#DADCE2",
        borderWidth: 1,
        borderRadius: 20,
        alignItems: "center",
        justifyContent: "center",
        marginRight: 10
    },
    nav_item_last: {
        marginRight: 0
    },
    nav_item_active: {
        backgroundColor: "#2C72FF",
        borderColor: "transparent",
    },
    nav_item_active_text: {
        color: "#ffffff"
    }
})

export default Center
相关推荐
Three K1 分钟前
Redisson限流器特点
java·开发语言
Halo_tjn2 分钟前
Java 多线程机制
java·开发语言·windows·计算机
Jeff-Nolan7 分钟前
C++运算符重载
java·开发语言·c++
YouEmbedded7 分钟前
解码智能指针
开发语言·c++·unique_ptr·shared_ptr·auto_ptr·weak_ptr
海上彼尚8 分钟前
Go之路 - 7.go的函数
开发语言·后端·golang
Geoking.17 分钟前
深度理解 Java synchronized —— 从原理到实战
java·开发语言
李瑞丰_liruifengv17 分钟前
使用 Claude Agent SDK 写一个 DeepResearch Agent
javascript·aigc·agent
sailing-data18 分钟前
【UI Qt】入门笔记
开发语言·qt·ui
Salt_072820 分钟前
DAY32 类的定义和方法
开发语言·python·算法·机器学习
未来影子27 分钟前
Java领域构建Agent新杀入一匹黑马(agentscope-java)
java·开发语言·python