基本上,我的应用程序屏幕的右上角有一个云图标,当我单击它时,我希望它在我的应用程序中编辑 out=""
while read i; do
length=$(echo $i | cut -d$'\t' -f2) #How to use $i here?
c=$(echo $i | cut -d$'\t' -f1)
start=1
end=10000
for (( i = 0; i < $(expr $length / 500); i++ )); do
start=$(expr $start + $i \* 500)
end=$(expr $end + $i \* 500)
echo $c $start $end >> out
done
done <file
变量。而且我正在尝试获取该变量以更改AsyncStorage
类的样式。
为此,我试图使其成为可单击的元素,但是我不知道如何将这个<Icon>
转换为每个屏幕文件都能看到的变量。
现在,图标样式即基于onClick
,但仅在每个屏幕文件中的navigation.state.params.cloud
上建立。
有人对如何做到这一点有什么建议吗?
我的React-Native应用程序设置如下:
ComponentDidMount()
import { AppRegistry } from 'react-native';
import App from './app/config/app';
AppRegistry.registerComponent('MobApp', () => App);