pep 0.0.1 → 0.0.2
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.
- checksums.yaml +4 -4
- data/lib/pep.rb +16 -5
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b079b6f40754f4136e2e5d87f4053ca2f5a6a0bbb10dac8b4b68787b7ff48661
|
4
|
+
data.tar.gz: 7a5c51a28cc28106692389d36b03b9b552d33931acd5a39ca3a3a13848860056
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5f2527fc1bcd098cdaa77034f9e2a96b08bbe1df401263e475311dd040dfa45e1a392ab308574f5a5030d77a88a92a201c9254e74b35509640682367fa45d02d
|
7
|
+
data.tar.gz: 04cd159f764557f08ad5b8d9cfaadebfefa4848335ceae062b468b860f13608b9957a1360fe66f58bebaf3e416d47b7d39576ec9948067d4edf2b690f6604d6e
|
data/lib/pep.rb
CHANGED
@@ -390,16 +390,27 @@ class InstallReactNavigation
|
|
390
390
|
const [homeScreensTextInputValue, setHomescreensTextInputValue] =
|
391
391
|
useState<string>("")
|
392
392
|
return (
|
393
|
-
<View style={{ flex: 1, alignItems: "center"
|
394
|
-
<Text
|
393
|
+
<View style={{ flex: 1, alignItems: "center" }}>
|
394
|
+
<Text style={{ fontWeight: "bold", marginTop: 100 }}>
|
395
|
+
Open `src/App.tsx` to begin editing your app.
|
396
|
+
</Text>
|
397
|
+
<Text style={{ marginTop: 100 }}>Home Screen</Text>
|
395
398
|
<TextInput
|
396
399
|
value={homeScreensTextInputValue}
|
397
400
|
onChangeText={setHomescreensTextInputValue}
|
398
|
-
placeholder="Type
|
399
|
-
style={{
|
401
|
+
placeholder="Type something here to see it on the details screen"
|
402
|
+
style={{
|
403
|
+
width: "90%",
|
404
|
+
height: 30,
|
405
|
+
textAlign: "center",
|
406
|
+
borderWidth: 1,
|
407
|
+
borderColor: "#aaa",
|
408
|
+
marginTop: 20,
|
409
|
+
marginBottom: 20,
|
410
|
+
}}
|
400
411
|
/>
|
401
412
|
<Button
|
402
|
-
title="Go to Details"
|
413
|
+
title="Go to Details Screen"
|
403
414
|
onPress={(): void => {
|
404
415
|
navigation.navigate("Details", { homeScreensTextInputValue })
|
405
416
|
}}
|