- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我有以下基本组件,它以 LinearGradient 作为背景呈现 TouchableOpacity
import React from 'react';
import {StyleSheet, View, Text, TouchableOpacity} from 'react-native';
import LinearGradient from 'react-native-linear-gradient';
export default class GradientButton extends React.Component {
render() {
return (
<LinearGradient
style={[styles.linearGradient, styles.btnLogWeight]}
colors={['#085d87', '#27c7bb']}
start={{x: 0, y: 1}}
end={{x: 1, y: 0}}>
<TouchableOpacity style={[{flex: 1}]} onPress={this.props.onPress}>
<View style={[{flex: 1}]} />
<Text style={styles.buttonText}>{this.props.text}</Text>
<View style={[{flex: 1}]} />
</TouchableOpacity>
</LinearGradient>
);
}
}
const styles = StyleSheet.create({
btnLogWeight: {
margin: 10,
},
linearGradient: {
flex: 1,
borderRadius: 30,
},
buttonText: {
fontSize: 16,
textAlign: 'center',
color: '#ffffff',
backgroundColor: 'transparent',
},
});
我已经测试过它并且工作正常,但是当我尝试在我的一个屏幕上使用它时,我会得到不同的结果,具体取决于按钮添加到我的屏幕层次结构的深度。
import React from 'react';
import BaseScreen from 'components/BaseScreen';
import {StyleSheet, View, Text} from 'react-native';
import GradientButton from 'components/GradientButton';
class DataEntryScreen extends React.Component {
render() {
return (
<BaseScreen>
<View style={[styles.flexExpander]}>
<Text style={[styles.whiteText]}>{this.props.descc}</Text>
{this.props.children}
<View style={[styles.flexExpander]} />
<GradientButton text="Back" />
<GradientButton text="Next" />
<View>
<GradientButton text="Back" />
<GradientButton text="Next" />
</View>
<View style={[styles.buttonRow]}>
<GradientButton text="Back" />
<GradientButton text="Next" />
</View>
</View>
</BaseScreen>
);
}
}
export default DataEntryScreen;
const styles = StyleSheet.create({
whiteText: {
color: '#e8e8e8',
fontSize: 20,
},
buttonRow: {
flexDirection: 'row',
padding: 10,
},
flexExpander: {
flex: 1,
},
});
其中 BaseScreen 是一个简单的包装器:
import React from 'react';
import {StyleSheet, SafeAreaView} from 'react-native';
import LinearGradient from 'react-native-linear-gradient';
class BaseScreen extends React.Component {
render() {
return (
<LinearGradient
colors={['#085d87', '#27c7bb']}
start={{x: 0, y: 1}}
end={{x: 1, y: 0}}
style={{flex: 1}}>
<SafeAreaView style={styles.container}>
{this.props.children}
</SafeAreaView>
</LinearGradient>
);
}
}
export default BaseScreen;
const styles = StyleSheet.create({
container: {
flex: 1,
padding: 10,
borderRadius: 15,
borderWidth: 3,
margin: 5,
backgroundColor: 'rgba(0, 0, 0, 0.7)',
borderColor: 'rgba(0, 0, 0, 0.5)',
},
});
这会产生以下输出:
如您所见,尽管以相同方式添加了 3 组按钮,但在 View 下添加的按钮(样式化和非样式化)呈现方式不同。此外,未呈现的按钮不可点击
对于组件的深度是否有一些限制或者我在这里不知道的东西?鉴于所有按钮上的文本元素都是白色的,至少某种程度的样式仍然适用于按钮。
感谢您提供的任何帮助
最佳答案
您可能需要将 flex:1 赋予渐变按钮的父 View 。
<View style={{flex:1}}>
<GradientButton text="Back" />
<GradientButton text="Next" />
</View>
同时添加 bottomRow 样式。
buttonRow: {
flex:1,
flexDirection: 'row',
padding: 10,
},
关于javascript - 作为子项添加时,以不同方式 react native 组件呈现,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59699938/
我正在尝试将 margin-left:20px 分配给表单内的所有 div,其类包含编辑,具有以下内容: form.edit > div { margin-left:20px; } 我的想法
我有这个 xpath: .//*[@id='some_id']/td//div 现在我想选择特定类型的 div 的任何子项,例如每个子项是标签或跨度。像这样的东西 .//*[@id='some_id'
我有一个包含包含用户信息的键列表的键,现在当我的表单加载时,我想将这些键作为数组获取。我该怎么做?我找到了获取计数的方法,但仍然不知道如何获取这些 key 。 最佳答案 您可以使用 Microsoft
关闭。这个问题需要更多 focused 。它目前不接受答案。 想要改进这个问题?更新问题,使其只关注 editing this post 的一个问题。 关闭 6 年前。 Improve this q
我正在通过一些在线教程来学习 AEM。根据教程,创建组件时,需要在 Allowed Parents 或 Allowed Children 中输入一些值。但是,我在窗口中看不到这样的选项。当我尝试创建组
我需要将 MDI 子窗体的创建集中到 Delphi (VCL) 中的一个独特过程中。这个想法是每次创建 MDI 子窗体时执行一些操作,无论其类型如何,即将其标题名称添加到列表中以访问该 MDI 子窗体
我试图在 TreeView 中获取所选节点的所有子节点,但遇到了一些问题。 以这个 TreeView 为例: 我想将所有子节点变为黄色突出显示的“文件夹”节点,这将是旁边有一条蓝线的子节点。 这是我尝
我在最小化我所有的 MDIChildren 时遇到了麻烦,遇到了 MDIChild to minimize not activated properly 我最小化所有 child 的代码是: proc
我使用下面的代码通过单击系统关闭按钮来关闭 MDI 子窗体,它工作正常: procedure Tfrm_main.FormClose(Sender: TObject; var Action: TC
仅当我指定对象的完整路径时,我才能通过指定特定子键来查找 Firebase 对象。这是为什么? 这有效 ref.child(`users/${user.uid}/watchlist/${key}`)
每当我单击工具栏菜单时,它每次都会显示新表单。我想阻止它一次又一次地显示相同的表单。在给出的代码中,form2 一次又一次地显示。我想停止它,以便它显示一次。 喜欢: private void new
我想知道是否有一种方法可以通过遍历父节点的 vector 来获取子节点中的数据。我有一个我计划经常更改的 XML 文件,因此我想避免对属性名称进行硬编码。因此,我想在我的子节点中提取数据而不使用 pt
假设我有以下 YAML 文件: - key1: value # and so on... key99: value key100: subkey1: value # an
我不是代码天才,而是行动脚本爱好者。 你能帮我吗? 我有一个函数,根据选择的对象,该函数将事件监听器调用已经在舞台上的一组“子项目”(我想在单击时重新使用具有更改参数的子项目,而不是创建多个实例和代码
我需要一些帮助来查询分层数据。这是一个简单的表,其中 parent_id 引用 id 并且对于根条目可能为 null。 create table edition ( id
我尝试获得一个简单的 GEF 编辑器。我有一个 GraphicalEditorWithPalette 来创建我的示例模型。我有一个覆盖 createFigure 和 getModelChildren
我正在尝试搜索其中包含子项(文本区域)的表格单元格。我努力了td.children.value,td.childNodes.value,td.firstChild.value,td.lastChild
我有一个 mdi 父 form 并且我在运行时通过以下代码将我的其他 form 作为 mdi 子窗体打开: private void MenuItem_Click(object sender, Eve
我在 Activity 中加载了一个 GridView,其中存在 fragment 。 GridView 本身并不位于 Fragment 中。我通过 BaseAdapter 创建了一个客户适配器,一切
我在导航 Controller 中有两个 child (根 child 和第二个 child )。我通常先去找根 child ,然后再去找第二个 child 。这允许我使用导航 Controller
我是一名优秀的程序员,十分优秀!