react-native-blur icon indicating copy to clipboard operation
react-native-blur copied to clipboard

Android doesn't work

Open baicuhaha opened this issue 6 years ago • 4 comments

                <BlurView
                    style={styles.absolute}
                    blurType="light"
                    blurAmount={10}
                />
                <Animatable.View 
                duration={500}
                animation={"fadeInDownBig"} style={{}}>
                    <FlatList
                        data={this.state.dataSource}
                        style={{ backgroundColor:GlobalColor.f0f0f0,marginTop:this.props.type == "MyReservation"?ScreenUtils.scaleSize(height):0 }}
                        renderItem={this.renderRow.bind(this)}
                        keyExtractor={(item, index) => {
                            return index
                        }}
                    />
                </Animatable.View>
        </View>

Android doesn't work but ios does,What code do I need to set。

2018-07-16 4 26 49 2018-07-16 4 26 42

baicuhaha avatar Jul 16 '18 08:07 baicuhaha

my code...

2018-07-16 4 30 54

baicuhaha avatar Jul 16 '18 08:07 baicuhaha

安卓上必须给一个viewRef属性,来制定模糊对象的加载状态,否则就会无效

LunixTD avatar Dec 24 '18 16:12 LunixTD

安卓 加viewRef也没效果

LewinJun avatar Dec 26 '18 08:12 LewinJun

加了也无效

xclidongbo avatar Jul 20 '19 00:07 xclidongbo