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