reactive_cupertino_text_field 0.0.5 copy "reactive_cupertino_text_field: ^0.0.5" to clipboard
reactive_cupertino_text_field: ^0.0.5 copied to clipboard

outdated

Wrapper around flutter CupertinoTextField to use with reactive_forms

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:reactive_cupertino_text_field/reactive_cupertino_text_field.dart';
import 'package:reactive_forms/reactive_forms.dart';

void main() {
  runApp(MyApp());
}

class MyApp extends StatelessWidget {
  FormGroup buildForm() => fb.group({
        'input': FormControl<String>(value: 'asdfg'),
      });

  // This widget is the root of your application.
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Demo',
      theme: ThemeData(
        primarySwatch: Colors.blue,
        visualDensity: VisualDensity.adaptivePlatformDensity,
      ),
      home: Scaffold(
        appBar: AppBar(),
        body: SafeArea(
          child: SingleChildScrollView(
            physics: BouncingScrollPhysics(),
            padding: const EdgeInsets.symmetric(
              horizontal: 20.0,
              vertical: 20.0,
            ),
            child: ReactiveFormBuilder(
              form: buildForm,
              builder: (context, form, child) {
                return Column(
                  children: [
                    ReactiveCupertinoTextField<String>(
                      formControlName: 'input',
                    ),
                    SizedBox(height: 16),
                    ElevatedButton(
                      child: Text('Sign Up'),
                      onPressed: () {
                        if (form.valid) {
                          print(form.value);
                        } else {
                          form.markAllAsTouched();
                        }
                      },
                    ),
                  ],
                );
              },
            ),
          ),
        ),
      ),
    );
  }
}
3
likes
0
pub points
71%
popularity

Publisher

unverified uploader

Wrapper around flutter CupertinoTextField to use with reactive_forms

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter, reactive_forms

More

Packages that depend on reactive_cupertino_text_field