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

Enter any number and replacement it hint

example/lib/main.dart

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

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

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

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Demo',
      debugShowCheckedModeBanner: false,
      theme: ThemeData(
        primarySwatch: Colors.blue,
      ),
      home: Scaffold(
        appBar: AppBar(title: Text('Demo')),
        body: const Padding(
          padding: EdgeInsets.all(16.0),
          child: HintFormField(
            hintFormat: '## # # # # ##',
          ),
        ),
        // body: PinCodeVerificationScreen(),
      ),
    );
  }
}
5
likes
0
points
16
downloads

Publisher

unverified uploader

Weekly Downloads

Enter any number and replacement it hint

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter, mask_text_input_formatter

More

Packages that depend on hint_form_field