我刚开始使用react-native而且我看到了溢出属性的问题,从我的研究中我发现默认情况下android已经溢出:'隐藏',我如何克服这个问题?
答案 0 :(得分:0)
这是一个尚未解决的漏洞。你可以在android上找到files = GetFiles('hand_texts')
database = []
for hand_text in files:
# as a sidenote, with contexts are helpful for these:
with open('hand_texts/' + hand_text) as text:
b=text.read()
hands=b.split("\n\n\n\n\n")
for i in range(1,len(hands)):
try:
hh = PokerStarsHandHistory(unicode(hands[i]))
hh.parse()
fold = FindFold(hh)
if fold == 'showdown':
for shower in GetShowers(hh):
database.append(DataGenerator(hh,shower,hand_text,i))
print('Success in parsing iteration ' + str(i) + ' from file' + hand_text)
except:
print('PARSER ERROR ON ITERATION [[' + str(i) + ']] FROM FILE [[' + hand_text + ']]')
database.append(EmptyLine(hand_text,i))
pd.DataFrame(database).to_csv('database2.csv'))
。它唯一能做的就是允许overflow:'visible'
之外的东西显示。
相关问题:
https://github.com/facebook/react-native/issues/6802 https://github.com/facebook/react-native/issues/17074
答案 1 :(得分:0)
我正在使用absolute和margin属性来解决此问题: 例如:
<View style={{ flex: 1}}>
<View style={{position:'absolute',top:0,zIndex:10}}></View>
<View style={{marginTop:25}}></View>
</View>
答案 2 :(得分:0)
react native 0.57.0及更高版本支持溢出。只需将overflow: visible
传递给样式道具即可。