// import * as React from 'react'; import { StyleSheet, View, Text } from 'react-native'; import { BlurView } from 'react-native-ios-visual-effect-view'; export function BlurViewBasicUsage01() { return ( {'โค๏ธ\n๐Ÿงก\n๐Ÿ’›\n๐Ÿ’š\n๐Ÿ’™\n๐Ÿ’œ\n๐Ÿ’–\n๐Ÿ’ƒ\nโœจ'} ); } const styles = StyleSheet.create({ container: { flex: 1, alignItems: 'center', justifyContent: 'center', backgroundColor: 'white', }, label: { fontSize: 72, }, effectOverlay: { position: 'absolute', top: 0, bottom: 0, left: 0, right: 0, }, });