Support linux version of MIHpt2

This commit is contained in:
2026-02-24 16:30:06 +02:00
parent 6ad6b6ccbd
commit 07d4ba4afa
7 changed files with 97 additions and 45 deletions

View File

@@ -1,4 +1,5 @@
import 'dart:async';
import 'dart:io';
import 'dart:math';
import 'package:flutter/material.dart';
import 'package:flutter_speed_dial/flutter_speed_dial.dart';
@@ -851,7 +852,9 @@ class _MineSweeperGameState extends State<MineSweeperGame> {
],
),
),
_timer != null ? MihBannerAd() : SizedBox(),
_timer != null && (Platform.isAndroid || Platform.isIOS)
? MihBannerAd()
: SizedBox(),
SizedBox(height: 15),
],
);