1
0
mirror of https://github.com/flutter/samples.git synced 2025-11-08 22:09:06 +00:00

fix: import fixed to make game_template working out of this repository (#1329)

* fix: import fixed to make game_template working out of this repository

* fix: import fixed to make game_template working out of this repository
This commit is contained in:
Toshik
2022-07-19 22:51:27 +03:00
committed by GitHub
parent dbefd89ca9
commit 6e6bce1998
2 changed files with 2 additions and 2 deletions

View File

@@ -4,8 +4,8 @@
import 'package:flutter/material.dart';
import 'package:flutter/services.dart';
import 'package:game_template/src/settings/settings.dart';
import 'package:provider/provider.dart';
import 'settings.dart';
void showCustomNameDialog(BuildContext context) {
showGeneralDialog(

View File

@@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
import 'package:game_template/src/settings/persistence/settings_persistence.dart';
import 'settings_persistence.dart';
/// An in-memory implementation of [SettingsPersistence].
/// Useful for testing.