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

A new Flutter package for Custom Text Filed and Drop Down Widget.

example/lib/main.dart

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

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

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

  // This widget is the root of your application.
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Demo',

      home: Scaffold(
        appBar: AppBar(title: Text("Custom Text Filed and DropDown")),
        body: Column(
          children: [
            CustomTextFieldWithDropDown(hintText: '', showObscure: false),
          ],
        ),
      ),
    );
  }
}
7
likes
0
points
17
downloads

Publisher

unverified uploader

Weekly Downloads

A new Flutter package for Custom Text Filed and Drop Down Widget.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter, get, google_fonts

More

Packages that depend on custom_text_field_with_drop_down