Skip to content

Commit

Permalink
point to correct netwok import
Browse files Browse the repository at this point in the history
  • Loading branch information
Ludwig committed Nov 22, 2018
1 parent c6683b0 commit edbda85
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/ui/screens/map.dart
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import 'package:flutter/material.dart';
import 'package:flutter_map/flutter_map.dart';
import 'package:latlong/latlong.dart';

import '../../network/state.dart';
import '../../network/network.dart';
import '../../resources/constants.dart';
import '../animation/popup.dart';
import '../widgets/videoplayer.dart';
Expand Down Expand Up @@ -38,7 +38,7 @@ class _Maps extends State<Maps> with TickerProviderStateMixin {
onTap: () async => Navigator.of(context).push(Popup(
context: context,
child: FishPlayer(
lore: o[3], url: await SystemState.fishVideos(o[4])))),
lore: o[3], url: await Network.fishVideos(o[4])))),
child: Container(
child: Image.network(
'https://hub.warframestat.us/img/map_icons/oddity.png'))));
Expand Down Expand Up @@ -86,7 +86,7 @@ class _Maps extends State<Maps> with TickerProviderStateMixin {
]),
body: FlutterMap(
options:
MapOptions(center: LatLng(0, 0), zoom: 3, minZoom: 0, maxZoom: 4),
MapOptions(center: LatLng(0, 0), zoom: 3, minZoom: 0, maxZoom: 4),
layers: [
TileLayerOptions(
maxZoom: 5,
Expand Down

0 comments on commit edbda85

Please sign in to comment.