Mobiles_programming/lib/data/repositories/mock_repository.dart

33 lines
2.0 KiB
Dart
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// import 'package:flutter/material.dart';
// import 'package:mobiles_labs_5th_semester/data/repositories/api_interface.dart';
// import 'package:mobiles_labs_5th_semester/domain/models/game.dart';
//
// //реализация apiInterface
// //"фейковые" данные, которые подходят
// class MockRepository extends ApiInterface {
// @override
// Future<List<GameData>?> loadData(String? q) async {
// return [
// GameData(
// name: 'Late Shift',
// //price: 399,
// date: DateTime(2016, 20, 02),
// description: 'Late Shift - криминальный FMV-триллер с невероятно высокими ставками. Вы окажетесь в эпицентре лондонского ограбления и выберете своё приключение в интерактивном кинофильме с меняющейся историей, ведущей к одной из семи концовок. Ваши решения определяют вас.',
// image:
// 'https://shared.akamai.steamstatic.com/store_item_assets/steam/apps/584980/capsule_616x353.jpg?t=1697110140'),
// GameData(
// name: 'Dark Nights with Poe & Munro',
// //price: 450,
// date: DateTime(2019, 05, 05),
// description: 'Проведите местных радиоведущих По и Манро через шесть похожих на короткометражки эпизодов сверъестественной странности и обжигающего сюжета. От создателей The Infectious Madness of Doctor Dekker и The Shapeshifting Detective.',
// image:
// 'https://shared.akamai.steamstatic.com/store_item_assets/steam/apps/1098170/capsule_616x353.jpg?t=1725541685'),
// GameData(
// date: DateTime(1900, 20, 02),
// name: 'Неизвестная игра',
// //price: 999,
//
// )
// ];
// }
// }