custom_text_field_with_drop_down 0.0.1
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),
],
),
),
);
}
}