import React from 'react'; import { View, Text, StyleSheet, SafeAreaView, StatusBar, TouchableOpacity, Platform, } from 'react-native'; import { useNavigation } from '@react-navigation/native'; import { KurdistanColors } from '../theme/colors'; const PollsScreen: React.FC = () => { const navigation = useNavigation(); return ( {/* Header */} navigation.goBack()} style={styles.backButton}> ← Back Polls {/* Content */} 📊 Coming Soon Public Polls Public Polls will be available soon! Rapirsiyên giştî zû tên! Planned Features: • Community opinion polls • Anonymous voting options • Real-time results • Weighted voting by Tiki ); }; const styles = StyleSheet.create({ container: { flex: 1, backgroundColor: '#F5F5F5', paddingTop: Platform.OS === 'android' ? StatusBar.currentHeight : 0, }, header: { flexDirection: 'row', justifyContent: 'space-between', alignItems: 'center', paddingHorizontal: 16, paddingVertical: 12, backgroundColor: '#FFFFFF', borderBottomWidth: 1, borderBottomColor: '#E5E5E5', }, backButton: { paddingVertical: 4, paddingRight: 8, }, backButtonText: { fontSize: 16, color: KurdistanColors.kesk, fontWeight: '500', }, headerTitle: { fontSize: 18, fontWeight: 'bold', color: KurdistanColors.reş, }, placeholder: { width: 60, }, content: { flex: 1, alignItems: 'center', justifyContent: 'center', paddingHorizontal: 32, }, icon: { fontSize: 80, marginBottom: 24, }, title: { fontSize: 22, fontWeight: 'bold', color: KurdistanColors.reş, textAlign: 'center', marginBottom: 4, }, titleEn: { fontSize: 18, color: '#666', textAlign: 'center', marginBottom: 24, }, messageBox: { backgroundColor: '#FFFFFF', borderRadius: 16, padding: 20, marginBottom: 24, width: '100%', }, message: { fontSize: 15, color: '#444', textAlign: 'center', lineHeight: 24, marginBottom: 12, }, messageEn: { fontSize: 14, color: '#888', textAlign: 'center', lineHeight: 22, }, featureList: { backgroundColor: '#FFFFFF', borderRadius: 16, padding: 20, width: '100%', }, featureTitle: { fontSize: 16, fontWeight: 'bold', color: KurdistanColors.kesk, marginBottom: 12, }, featureItem: { fontSize: 14, color: '#555', marginBottom: 8, lineHeight: 20, }, }); export default PollsScreen;