Compare commits

...

2 commits

Author SHA1 Message Date
053bf127e7 chore: set version to 1.3.1 2025-04-03 16:09:46 +02:00
c0ce4734e4 fix: type an untyped function variable 2025-04-03 16:04:39 +02:00
2 changed files with 3 additions and 3 deletions

View file

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

View file

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