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

show about textformfieldcustom

example/lib/main.dart

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

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

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

  // This widget is the root of your application.
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      theme: ThemeData(
        primarySwatch: Colors.blue,
      ),
      home: const HomePage(),
    );
  }
}

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

  @override
  Widget build(BuildContext context) {
    return Scaffold(
        appBar: AppBar(
          title: const Text('Custom Text Field'),
        ),
        body: Column(
          children: const [
            CustomTextfield(
              label: 'Borey zin2 Boy Lozz ',
              hint: 'Borey zin2 Boy Lozz ',
            )
          ],
        ));
  }
}
1
likes
50
pub points
0%
popularity

Publisher

unverified uploader

show about textformfieldcustom

Repository (GitHub)
View/report issues

Documentation

API reference

License

unknown (LICENSE)

Dependencies

flutter, intl

More

Packages that depend on textformfieldcustom