/** * LoginComponent of Myntra * https://github.com/facebook/react-native * @flow */ import React,{ Component } from "react"; import { AppRegistry,Text,VIEw,button,Textinput } from "react-native";class LoginComponent extends Component {render() { return ( <VIEw style={{ flex: 1,flexDirection: "column",margin: 10 }}> <Textinput style={{ height: 40,bordercolor: "gray",borderWIDth: 0.5 }} placeholder="Email address" underlinecolorAndroID="transparent" /> <Textinput style={{ height: 40,borderWIDth: 0.5 }} placeholder="Password" secureTextEntry={true} underlinecolorAndroID="transparent" /> <VIEw style={{ height: 100,margintop: 10 }}> <button title="LOG IN" color="#2E8B57" /> </VIEw> </VIEw> ); }}AppRegistry.registerComponent("Myntra",() => LoginComponent);
任何人都可以帮我根据我的要求设置按钮的高度.
提前致谢.
解决方法 此组件具有有限的选项,因此您无法将其调整到固定高度.我建议您使用touchableOpacity组件构建自己的按钮,具有自己的属性和样式.
您可以像这样轻松地设置样式:
<touchableOpacity style={{ height: 100,margintop: 10 }}> <Text>My button</Text></touchableOpacity>总结
以上是内存溢出为你收集整理的如何在本机android中设置按钮的高度全部内容,希望文章能够帮你解决如何在本机android中设置按钮的高度所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)