CreateGroupView erstellt #28

Merged
flixcoo merged 37 commits from feature/5-creategroupview-erstellen into development 2025-11-19 17:32:44 +00:00
Showing only changes of commit 51a8c4ea58 - Show all commits

View File

@@ -23,14 +23,14 @@ class CustomSearchBar extends StatelessWidget {
constraints ?? const BoxConstraints(maxHeight: 45, minHeight: 45),
hintText: hintText,
onChanged: onChanged,
hintStyle: MaterialStateProperty.all(const TextStyle(fontSize: 16)),
hintStyle: WidgetStateProperty.all(const TextStyle(fontSize: 16)),
sneeex marked this conversation as resolved Outdated

MaterialStateProperty ist deprecated

`MaterialStateProperty` ist deprecated
leading: const Icon(Icons.search),
backgroundColor: MaterialStateProperty.all(CustomTheme.boxColor),
side: MaterialStateProperty.all(BorderSide(color: CustomTheme.boxBorder)),
shape: MaterialStateProperty.all(
backgroundColor: WidgetStateProperty.all(CustomTheme.boxColor),
sneeex marked this conversation as resolved Outdated

MaterialStateProperty ist deprecated

MaterialStateProperty ist deprecated
side: WidgetStateProperty.all(BorderSide(color: CustomTheme.boxBorder)),
sneeex marked this conversation as resolved Outdated

MaterialStateProperty ist deprecated

MaterialStateProperty ist deprecated
shape: WidgetStateProperty.all(
sneeex marked this conversation as resolved Outdated

MaterialStateProperty ist deprecated

MaterialStateProperty ist deprecated
RoundedRectangleBorder(borderRadius: BorderRadius.circular(12)),
),
elevation: MaterialStateProperty.all(0),
elevation: WidgetStateProperty.all(0),
sneeex marked this conversation as resolved Outdated

MaterialStateProperty ist deprecated

MaterialStateProperty ist deprecated
);
}
}