textformfieldcustom 0.0.1 copy "textformfieldcustom: ^0.0.1" to clipboard
textformfieldcustom: ^0.0.1 copied to clipboard

outdated

show about textformfieldcustom

Usage #

import 'package:cic_clone/utils/custom_text_field.dart';
import 'package:flutter/material.dart';

class TestScreen extends StatelessWidget {
  const TestScreen({Key? key}) : super(key: key);

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      body: Column(
        children: [
          const CustomTextfield(
            label: 'Name',
          ),
          CustomTextfield(
            label: 'Date Of Birth',
            onDateTimeChanged: (v) {},
          )
        ],
      ),
    );
  }
}
1
likes
0
pub points
0%
popularity

Publisher

unverified uploader

show about textformfieldcustom

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter, intl

More

Packages that depend on textformfieldcustom