Untitled

 avatar
unknown
plain_text
3 years ago
682 B
3
Indexable
Center(
                  child: CustomTextField(
                    labelText: "Ad - Soyad",
                    labelColor: Colors.amber[700],
                    labelTextSize: height * 0.025,
                    inputFormatters: <TextInputFormatter>[
                      FilteringTextInputFormatter.allow(
                          RegExp("[A-Z a-zğÖöÇçıİüÜşŞ]")),
                    ],
                    controller: _nameController,
                    height: 1,
                    obscureText: false,
                    padding: 2,
                    // counterText: "",
                    textColor: Colors.black,
                  ),
                ),
Editor is loading...