refactor: rename AdaptivePageRoute to adaptivePageRoute for lowerCamelCase
All checks were successful
Pull Request Pipeline / lint (pull_request) Successful in 2m13s
Pull Request Pipeline / test (pull_request) Successful in 2m18s

This commit is contained in:
2026-01-10 14:52:59 +01:00
parent 32fb1550ff
commit 97ca62b083
5 changed files with 9 additions and 13 deletions

View File

@@ -1,5 +1,4 @@
import 'dart:core' hide Match;
import 'package:flutter/cupertino.dart';
import 'package:flutter/material.dart';
import 'package:game_tracker/core/adaptive_page_route.dart';
import 'package:game_tracker/core/constants.dart';
@@ -82,7 +81,7 @@ class _MatchViewState extends State<MatchView> {
onTap: () async {
Navigator.push(
context,
AdaptivePageRoute(
adaptivePageRoute(
fullscreenDialog: true,
builder: (context) => MatchResultView(
match: matches[index],
@@ -105,7 +104,7 @@ class _MatchViewState extends State<MatchView> {
onPressed: () async {
Navigator.push(
context,
AdaptivePageRoute(
adaptivePageRoute(
builder: (context) =>
CreateMatchView(onWinnerChanged: loadGames))
);