Removing the ripple effect
This commit is contained in:
parent
330eb928d7
commit
aa20bfc716
5 changed files with 76 additions and 74 deletions
|
@ -66,3 +66,7 @@ Breaking change:
|
||||||
|
|
||||||
* Full support for input decoration
|
* Full support for input decoration
|
||||||
* New standardized usage, many deprecations
|
* New standardized usage, many deprecations
|
||||||
|
|
||||||
|
##1.0.1
|
||||||
|
|
||||||
|
* Removing the ripple effect
|
||||||
|
|
|
@ -15,7 +15,7 @@ In the `pubspec.yaml` of your flutter project, add the following dependency:
|
||||||
```yaml
|
```yaml
|
||||||
dependencies:
|
dependencies:
|
||||||
...
|
...
|
||||||
date_field: ^1.0.0
|
date_field: ^1.0.1
|
||||||
```
|
```
|
||||||
|
|
||||||
In your library add the following import:
|
In your library add the following import:
|
||||||
|
|
|
@ -12,8 +12,10 @@ class MyApp extends StatelessWidget {
|
||||||
return MaterialApp(
|
return MaterialApp(
|
||||||
title: 'Flutter Demo',
|
title: 'Flutter Demo',
|
||||||
theme: ThemeData(
|
theme: ThemeData(
|
||||||
inputDecorationTheme:
|
inputDecorationTheme: const InputDecorationTheme(
|
||||||
const InputDecorationTheme(border: OutlineInputBorder()),
|
border: OutlineInputBorder()
|
||||||
|
),
|
||||||
|
|
||||||
primarySwatch: Colors.blue,
|
primarySwatch: Colors.blue,
|
||||||
),
|
),
|
||||||
home: MyHomePage(),
|
home: MyHomePage(),
|
||||||
|
@ -21,6 +23,7 @@ class MyApp extends StatelessWidget {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
class MyHomePage extends StatefulWidget {
|
class MyHomePage extends StatefulWidget {
|
||||||
@override
|
@override
|
||||||
_MyHomePageState createState() => _MyHomePageState();
|
_MyHomePageState createState() => _MyHomePageState();
|
||||||
|
@ -31,6 +34,7 @@ class _MyHomePageState extends State<MyHomePage> {
|
||||||
|
|
||||||
@override
|
@override
|
||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
|
|
||||||
return Scaffold(
|
return Scaffold(
|
||||||
body: Padding(
|
body: Padding(
|
||||||
padding: const EdgeInsets.all(20.0),
|
padding: const EdgeInsets.all(20.0),
|
||||||
|
@ -46,13 +50,15 @@ class _MyHomePageState extends State<MyHomePage> {
|
||||||
),
|
),
|
||||||
DateTimeField(
|
DateTimeField(
|
||||||
decoration: const InputDecoration(
|
decoration: const InputDecoration(
|
||||||
hintText: 'Please select your birthday date and time'),
|
hintText: 'Please select your birthday date and time'
|
||||||
|
),
|
||||||
selectedDate: selectedDate,
|
selectedDate: selectedDate,
|
||||||
onDateSelected: (DateTime value) {
|
onDateSelected: (DateTime value) {
|
||||||
setState(() {
|
setState(() {
|
||||||
selectedDate = value;
|
selectedDate = value;
|
||||||
});
|
});
|
||||||
}),
|
}
|
||||||
|
),
|
||||||
const Padding(
|
const Padding(
|
||||||
padding: EdgeInsets.symmetric(vertical: 20.0),
|
padding: EdgeInsets.symmetric(vertical: 20.0),
|
||||||
child: Text('DateTimeFormField'),
|
child: Text('DateTimeFormField'),
|
||||||
|
@ -69,8 +75,7 @@ class _MyHomePageState extends State<MyHomePage> {
|
||||||
labelText: 'My Super Date Time Field',
|
labelText: 'My Super Date Time Field',
|
||||||
),
|
),
|
||||||
autovalidateMode: AutovalidateMode.always,
|
autovalidateMode: AutovalidateMode.always,
|
||||||
validator: (e) =>
|
validator: (e) => (e?.day ?? 0) == 1 ? 'Please not the first day' : null,
|
||||||
(e?.day ?? 0) == 1 ? 'Please not the first day' : null,
|
|
||||||
onDateSelected: (DateTime value) {
|
onDateSelected: (DateTime value) {
|
||||||
print(value);
|
print(value);
|
||||||
},
|
},
|
||||||
|
@ -86,8 +91,7 @@ class _MyHomePageState extends State<MyHomePage> {
|
||||||
),
|
),
|
||||||
mode: DateTimeFieldPickerMode.time,
|
mode: DateTimeFieldPickerMode.time,
|
||||||
autovalidateMode: AutovalidateMode.always,
|
autovalidateMode: AutovalidateMode.always,
|
||||||
validator: (e) =>
|
validator: (e) => (e?.day ?? 0) == 1 ? 'Please not the first day' : null,
|
||||||
(e?.day ?? 0) == 1 ? 'Please not the first day' : null,
|
|
||||||
onDateSelected: (DateTime value) {
|
onDateSelected: (DateTime value) {
|
||||||
print(value);
|
print(value);
|
||||||
},
|
},
|
||||||
|
@ -97,6 +101,7 @@ class _MyHomePageState extends State<MyHomePage> {
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
));
|
)
|
||||||
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -312,16 +312,9 @@ class _InputDropdown extends StatelessWidget {
|
||||||
suffixIcon: const Icon(Icons.arrow_drop_down),
|
suffixIcon: const Icon(Icons.arrow_drop_down),
|
||||||
).applyDefaults(Theme.of(context).inputDecorationTheme);
|
).applyDefaults(Theme.of(context).inputDecorationTheme);
|
||||||
|
|
||||||
return Material(
|
return InputDecorator(
|
||||||
color: Colors.transparent,
|
|
||||||
child: InkWell(
|
|
||||||
borderRadius: inkwellBorderRadius,
|
|
||||||
onTap: onPressed,
|
|
||||||
child: InputDecorator(
|
|
||||||
decoration: effectiveDecoration,
|
decoration: effectiveDecoration,
|
||||||
child: Text(text, style: textStyle),
|
child: Text(text, style: textStyle),
|
||||||
),
|
|
||||||
),
|
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
name: date_field
|
name: date_field
|
||||||
description: A widget in the form of a field that lets people enter choose a date/time/date and time via a date/time picker dialog.
|
description: A widget in the form of a field that lets people enter choose a date/time/date and time via a date/time picker dialog.
|
||||||
version: 1.0.0
|
version: 1.0.1
|
||||||
homepage: 'https://github.com/GaspardMerten/date_field'
|
homepage: 'https://github.com/GaspardMerten/date_field'
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
|
|
Loading…
Reference in a new issue