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.
Files changed (3) hide show
  1. checksums.yaml +4 -4
  2. data/lib/pep.rb +16 -5
  3. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e7c10ef235be2b2f36cd20e07970b7409f2acc2544df56c49d7cfb215a759554
4
- data.tar.gz: dd6e067fad6d1da1639f0c012fa20bb3d7a67d6e33407b28610bdf8899f40e22
3
+ metadata.gz: b079b6f40754f4136e2e5d87f4053ca2f5a6a0bbb10dac8b4b68787b7ff48661
4
+ data.tar.gz: 7a5c51a28cc28106692389d36b03b9b552d33931acd5a39ca3a3a13848860056
5
5
  SHA512:
6
- metadata.gz: b8b85753413c34e6c20a4f99904c9014bbaa009be92ef9abfe2486281929e31b8f3dc4398ef1b4232cc005a24d7cca45a288f4a37c5aa0aa37a7c20178ded8ad
7
- data.tar.gz: d65d22df8d38eb65ff447313bbe3af7e9087bf7dca9408afc42a9d8e436a458340edf87742d280dca64e967449a3f604781c8cb467663fac0c883684a7cc00a1
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", justifyContent: "center" }}>
394
- <Text>Home Screen</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 somethin here dawg"
399
- style={{ width: "50%", height: 50 }}
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
  }}
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pep
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nick Pachulski