gpt4 book ai didi

javascript - 在 react native 中以 hr 为中心的图标

转载 作者:行者123 更新时间:2023-11-29 20:55:12 24 4
gpt4 key购买 nike

我想设计一条水平线,上面有一个图标,比如this one ,但在 native react 中。方向是:

<View style={{}}>
<View style={{}}>
<Image style={{}} source={}/>
</View>

enter image description here我该怎么做?

最佳答案

试试这段代码

import React, { Component } from 'react';
import { StyleSheet, View, Image } from 'react-native';

export default class App extends Component {
render() {
return (
<View style={{ paddingTop: 100, alignItems: 'center' }}>
<View style={{ borderBottomColor: '#bdbdbd', borderBottomWidth: 1, width: '90%' }} />
<View style={{ position: 'relative' }}>
<Image
style={styles.image}
source={{
uri: 'http://www.cgbconstrucciones.com/en/templates/rt_clarion/images/icons/green-leaf-icon.png',
}}
/>
</View>
</View>
);
}
}

const styles = StyleSheet.create({
image: {
width: 40,
height: 40,
position: 'absolute',
top: -20,
left: -20,
backgroundColor: '#fff'
}
});

在此处查看演示 https://snack.expo.io/@raajnadar/absolute-position

关于javascript - 在 react native 中以 hr 为中心的图标,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49632734/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com