mirror of
https://github.com/Iconica-Development/flutter_profile.git
synced 2025-05-19 09:13:44 +02:00
Compare commits
2 commits
Author | SHA1 | Date | |
---|---|---|---|
d8087d5a85 | |||
1c858c0108 |
2 changed files with 3 additions and 3 deletions
|
@ -19,14 +19,14 @@ class ItemBuilder {
|
||||||
|
|
||||||
Widget build(
|
Widget build(
|
||||||
String key,
|
String key,
|
||||||
value,
|
String? value,
|
||||||
Widget? widget,
|
Widget? widget,
|
||||||
Function(String) updateItem,
|
Function(String) updateItem,
|
||||||
Function(String?) saveItem,
|
Function(String?) saveItem,
|
||||||
) {
|
) {
|
||||||
if (widget == null) {
|
if (widget == null) {
|
||||||
var controller = TextEditingController(
|
var controller = TextEditingController(
|
||||||
text: '${value ?? ''}',
|
text: value ?? '',
|
||||||
);
|
);
|
||||||
|
|
||||||
var inputDecoration =
|
var inputDecoration =
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
name: flutter_profile
|
name: flutter_profile
|
||||||
description: Flutter profile package
|
description: Flutter profile package
|
||||||
version: 1.5.0
|
version: 1.5.1
|
||||||
repository: https://github.com/Iconica-Development/flutter_profile
|
repository: https://github.com/Iconica-Development/flutter_profile
|
||||||
|
|
||||||
publish_to: none
|
publish_to: none
|
||||||
|
|
Loading…
Reference in a new issue