all_validations_br 3.0.0 copy "all_validations_br: ^3.0.0" to clipboard
all_validations_br: ^3.0.0 copied to clipboard

String validations and remover char ex ('/', '-', '.'), more than a validation for your best projects. Made with love

example/lib/main.dart

import 'package:all_validations_br/all_validations_br.dart';
import 'package:flutter/material.dart';

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

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Demo',
      theme: ThemeData(
        primarySwatch: Colors.blue,
      ),
      home: MyHomePage(title: 'Flutter Demo Home Page'),
    );
  }
}

class MyHomePage extends StatefulWidget {
  MyHomePage({Key? key, required this.title}) : super(key: key);

  final String title;

  @override
  _MyHomePageState createState() => _MyHomePageState();
}

class _MyHomePageState extends State<MyHomePage> {
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: Text(widget.title),
      ),
      body: Center(
        child: Column(
          mainAxisAlignment: MainAxisAlignment.center,
          children: <Widget>[
            Text(
              'check is valid is:  true or false',
            ),
            Text(AllValidations.isCpf('00000000000') ? 'true' : 'false'),
            Text(AllValidations.isCpf('728.551.470-50') ? 'true' : 'false'),
            Text(AllValidations.isCpf('72855147050') ? 'true' : 'false'),
          ],
        ),
      ),
    );
  }
}
91
likes
130
pub points
81%
popularity

Publisher

unverified uploader

String validations and remover char ex ('/', '-', '.'), more than a validation for your best projects. Made with love

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter

More

Packages that depend on all_validations_br