motion-form 0.0.3 → 0.0.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +1 -1
- data/lib/project/cells/text_field_cell.rb +4 -0
- data/lib/project/rows/text_field_row.rb +6 -0
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7ec0e3983a3800bb6edc7c633122be829717b91c
|
4
|
+
data.tar.gz: f58908af2255c1b33fda2f7e5f2e0a57df626f91
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 34ce98d6e227ccb7dd1c9bf3d4c2d8aa6272dd479413580ac2f70654b2a3b1bfdd74e9ea0a94ad4b210dac2858ae5a32cdcfe77a61d35591b43a54a13e4f500c
|
7
|
+
data.tar.gz: 49d98fd12486955a5fa75510077c172ecec548ab8beb512669e270ef0069dedaf8f856f74427e1b9519cf6b48aa854aa62c33f8da6d815ddd41781b35b0411f1
|
data/README.md
CHANGED
@@ -13,7 +13,7 @@ It aims to bring a simple, yet flexible DSL to the tedious task of creating iOS
|
|
13
13
|
```ruby
|
14
14
|
form = MotionForm.form_for(view) do |f|
|
15
15
|
f.section 'Profile' do |section|
|
16
|
-
section.input :name, icon: :contact
|
16
|
+
section.input :name, icon: :contact, value: 'David Copperfield'
|
17
17
|
section.input :username, icon: :user
|
18
18
|
section.input :pinterest, icon: :pinterest
|
19
19
|
section.input :twitter, icon: :twitter
|