Compare commits

...

2 commits

Author SHA1 Message Date
d8087d5a85 chore: set version to 1.5.1 2025-04-03 16:08:41 +02:00
1c858c0108 fix: type an untyped function variable 2025-04-03 16:07:32 +02:00
2 changed files with 3 additions and 3 deletions

View file

@ -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 =

View file

@ -1,6 +1,6 @@
name: flutter_profile
description: Flutter profile package
version: 1.5.0
version: 1.5.1
repository: https://github.com/Iconica-Development/flutter_profile
publish_to: none