【Flutter】Flutter Web に 広告(Google Adsense) を入れてみた。
Flutter Webに広告を入れる際にアプリ用のAdMob広告とは別にする必要があり、Google AdSenseの対応してみました。
サンプルコード
HTML側とDart側で対応が必要になります。
HTML
まずはHTML側の対応です。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
| <!-- body内に挿入 -->
<style type="text/css">
footer{
width: 100%;
height: 100px; /* 広告の高さに合わせる */
background-color: #eeeeee;
text-align: center;
padding: 0;
position: absolute;
bottom: 0;
z-index: 100;
}
</style>
<footer id="footer">
<!-- Google AdSenseタグ -->
</footer>
|
Dart
アプリの下部にWebの場合は広告用の枠を取るようにします。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
| import 'package:flutter/material.dart';
import 'package:flutter/foundation.dart' show kIsWeb;
// 広告の高さに合わせる
double adHeight = 100;
void main() => runApp(MyApp());
class MyApp extends StatefulWidget {
MyApp({Key? key}) : super(key: key);
@override
_MyAppState createState() => _MyAppState();
}
class _MyAppState extends State<MyApp> {
@override
void initState() {
super.initState();
// Web判定
if (kIsWeb) {
adHeight = 100;
} else {
adHeight = 0;
}
}
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Hello, World',
theme: ThemeData(
primarySwatch: Colors.blue,
),
home: Scaffold(
appBar: AppBar(
title: Text("SAMPLE"),
),
body: Center(
child: Column(
children: [
Expanded(flex: 1, child: Text("hello")),
// 広告の枠
Container(height: adHeight, color: Colors.red),
],
),
),
),
);
}
}
|
参考