react-native-in-app-debugger 2.0.9 → 2.0.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Mock/MockDetails.jsx +9 -4
- package/package.json +1 -1
package/Mock/MockDetails.jsx
CHANGED
|
@@ -168,11 +168,11 @@ export default (p) => {
|
|
|
168
168
|
})}
|
|
169
169
|
</View>
|
|
170
170
|
{tab === "response" && (
|
|
171
|
-
<View style={{ gap: 3 }}>
|
|
171
|
+
<View style={{ gap: 3, padding: 10 }}>
|
|
172
172
|
<View style={{ flexDirection: "row", gap: 5 }}>
|
|
173
173
|
<Text>Status</Text>
|
|
174
174
|
<TextInput
|
|
175
|
-
style={{
|
|
175
|
+
style={{ ...styles.textField, width: 50 }}
|
|
176
176
|
inputMode="numeric"
|
|
177
177
|
onChangeText={(t) => {
|
|
178
178
|
setTmpResStatus(t);
|
|
@@ -192,10 +192,9 @@ export default (p) => {
|
|
|
192
192
|
<Text>Body</Text>
|
|
193
193
|
<TextInput
|
|
194
194
|
style={{
|
|
195
|
-
|
|
195
|
+
...styles.textField,
|
|
196
196
|
height: 250,
|
|
197
197
|
flex: 1,
|
|
198
|
-
padding: 2,
|
|
199
198
|
}}
|
|
200
199
|
multiline
|
|
201
200
|
onChangeText={setTmpResBody}
|
|
@@ -276,4 +275,10 @@ const styles = StyleSheet.create({
|
|
|
276
275
|
alignItems: "center",
|
|
277
276
|
justifyContent: "center",
|
|
278
277
|
},
|
|
278
|
+
textField: {
|
|
279
|
+
backgroundColor: "#ccc",
|
|
280
|
+
width: 50,
|
|
281
|
+
padding: 2,
|
|
282
|
+
borderRadius: 5,
|
|
283
|
+
},
|
|
279
284
|
});
|
package/package.json
CHANGED