We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b35b83e commit 865a611Copy full SHA for 865a611
example/lib/text_field_page.dart
@@ -130,6 +130,30 @@ class TextFieldPage extends StatelessWidget {
130
],
131
),
132
133
+ buildSectionTitle("Obscure Inputs"),
134
+ Padding(
135
+ padding: const EdgeInsets.only(left: 8.0, right: 8.0),
136
+ child: Row(
137
+ children: <Widget>[
138
+ Flexible(
139
+ child: PTheme.android(
140
+ PTextField(
141
+ obscureText: true,
142
+ decoration: basicInputDecoration("Android"),
143
+ ),
144
145
146
147
+ child: PTheme.ios(
148
149
150
+ decoration: basicInputDecoration("iOS"),
151
152
153
+ )
154
+ ],
155
156
157
158
159
0 commit comments