This commit is contained in:
2025-04-18 10:16:03 +02:00
parent 61b8d3e0e9
commit 8d87599fa3
5 changed files with 4 additions and 5 deletions
-1
View File
@@ -21,7 +21,6 @@ class _CheckboxWithLabelState extends State<CheckboxWithLabel> {
@override
void initState() {
// TODO: implement initState
super.initState();
isChecked = widget.state;
}
+1 -1
View File
@@ -429,7 +429,7 @@ class _AddMovieScreenState extends State<AddMovieScreen> {
);
try {
final r = await http.post(
/*final r = */await http.post(
url,
headers: <String, String>{
'Content-Type': 'application/json; charset=UTF-8',
@@ -313,7 +313,7 @@ class MovieDetailsScreen extends StatelessWidget {
);
try {
final r = await http.post(
/*final r =*/ await http.post(
url,
headers: <String, String>{
'Content-Type': 'application/json; charset=UTF-8',
+1 -1
View File
@@ -374,7 +374,7 @@ class _MoviesScreenState extends State<MoviesScreen> {
void addMovieFinished() {}
void addMovie() {
final m = Navigator.push(
/*final m =*/ Navigator.push(
context,
MaterialPageRoute(
builder: (ctx) =>
@@ -357,7 +357,7 @@ class TVShowDetailsScreen extends StatelessWidget {
var seasonState = jsonEncode(tvShowDetails.seasonStatus.map((e) => e.toJson()).toList());
try {
final r = await http.post(
/*final r =*/ await http.post(
url,
headers: <String, String>{
'Content-Type': 'application/json; charset=UTF-8',