unicorn-demo-app 6.26.0 → 6.26.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "unicorn-demo-app",
3
- "version": "6.26.0",
3
+ "version": "6.26.1",
4
4
  "main": "src/index.js",
5
5
  "author": "Ethan Sharabi <ethan.shar@gmail.com>",
6
6
  "license": "MIT",
@@ -274,10 +274,18 @@ export default class TextFieldScreen extends Component {
274
274
  />
275
275
 
276
276
  <Text h3 blue50 marginV-s4>
277
- Centered
277
+ Custom Alignments
278
278
  </Text>
279
279
 
280
+ <Text marginB-s1>Centered</Text>
280
281
  <TextField label="PIN" placeholder="XXXX" centered/>
282
+
283
+ <Text marginB-s1>Inline</Text>
284
+ <View row>
285
+ <TextField placeholder="hours" inline/>
286
+ <Text marginT-s1> : </Text>
287
+ <TextField placeholder="minutes" inline/>
288
+ </View>
281
289
  </View>
282
290
  <KeyboardAwareInsetsView/>
283
291
  </ScrollView>