reactive_textfield_tags 0.0.4 copy "reactive_textfield_tags: ^0.0.4" to clipboard
reactive_textfield_tags: ^0.0.4 copied to clipboard

Wrapper around textfield_tags to use with reactive_forms.

example/lib/main.dart

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

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

class MyApp extends StatelessWidget {
  const MyApp({super.key});

  FormGroup buildForm() => fb.group({
        'input': FormControl<List<String>>(value: [
          'test@test.sk',
          'test2@test.sk'
        ], validators: [
          Validators.maxLength(3),
        ]),
      });

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      theme: ThemeData(
        primarySwatch: Colors.blue,
        visualDensity: VisualDensity.adaptivePlatformDensity,
      ),
      home: Scaffold(
        appBar: AppBar(),
        body: SafeArea(
          child: SingleChildScrollView(
            physics: const BouncingScrollPhysics(),
            padding: const EdgeInsets.symmetric(
              horizontal: 20.0,
              vertical: 20.0,
            ),
            child: ReactiveFormBuilder(
              form: buildForm,
              builder: (context, form, child) {
                return Column(
                  children: [
                    ReactiveTextfieldTags(
                      formControlName: 'input',
                    ),
                    ElevatedButton(
                      child: const Text('Submit'),
                      onPressed: () {
                        if (form.valid) {
                          debugPrint(form.value.toString());
                        } else {
                          debugPrint(form.errors.toString());
                        }
                      },
                    ),
                  ],
                );
              },
            ),
          ),
        ),
      ),
    );
  }
}
1
likes
100
points
95
downloads

Publisher

unverified uploader

Weekly Downloads

Wrapper around textfield_tags to use with reactive_forms.

Repository (GitHub)
View/report issues
Contributing

Documentation

API reference

License

MIT (license)

Dependencies

flutter, reactive_forms, textfield_tags

More

Packages that depend on reactive_textfield_tags