File tree 3 files changed +36
-1
lines changed
3 files changed +36
-1
lines changed Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ android {
39
39
defaultConfig {
40
40
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
41
41
applicationId " youtube.sidtube.drawoverotherapps"
42
- minSdkVersion 16
42
+ minSdkVersion 21
43
43
targetSdkVersion 28
44
44
versionCode flutterVersionCode. toInteger()
45
45
versionName flutterVersionName
Original file line number Diff line number Diff line change 7
7
android : name =" .Application"
8
8
android : label =" drawoverotherapps"
9
9
android : icon =" @mipmap/ic_launcher" >
10
+
10
11
<activity
11
12
android : name =" .MainActivity"
12
13
android : launchMode =" singleTop"
36
37
<category android : name =" android.intent.category.LAUNCHER" />
37
38
</intent-filter >
38
39
</activity >
40
+ <service
41
+ android : name =" com.adriankohls.bubble_overlay.BubbleOverlayService"
42
+ android : enabled =" true"
43
+ android : exported =" false" />
44
+ <service
45
+ android : name =" com.adriankohls.BubbleVideoOverlayService.BubbleOverlayService"
46
+ android : enabled =" true"
47
+ android : exported =" false" />
39
48
<!-- Don't delete the meta-data below.
40
49
This is used by the Flutter tool to generate GeneratedPluginRegistrant.java -->
41
50
<meta-data
Original file line number Diff line number Diff line change
1
+ import 'package:bubble_overlay/bubble_overlay.dart' ;
1
2
import 'package:flutter/material.dart' ;
2
3
import 'package:system_alert_window/system_alert_window.dart' ;
3
4
@@ -18,6 +19,8 @@ class _HomeScreenState extends State<HomeScreen> {
18
19
await SystemAlertWindow .checkPermissions;
19
20
}
20
21
22
+ final BubbleOverlay bubbleOverlay = BubbleOverlay ();
23
+
21
24
@override
22
25
Widget build (BuildContext context) {
23
26
return Scaffold (
@@ -72,6 +75,19 @@ class _HomeScreenState extends State<HomeScreen> {
72
75
child: Text ('Show dialog over other apps' ),
73
76
),
74
77
),
78
+ Center (
79
+ child: RaisedButton (
80
+ textColor: Colors .white,
81
+ onPressed: () {
82
+ bubbleOverlay.openBubble (
83
+ topText: "hi" ,
84
+ bottomText: "Bottom text" ,
85
+ backgroundColor: "#456123" );
86
+ },
87
+ color: Colors .blue,
88
+ child: Text ('Open bubble mode' ),
89
+ ),
90
+ ),
75
91
Center (
76
92
child: RaisedButton (
77
93
textColor: Colors .white,
@@ -81,6 +97,16 @@ class _HomeScreenState extends State<HomeScreen> {
81
97
color: Colors .red,
82
98
child: Text ('close dialog' ),
83
99
),
100
+ ),
101
+ Center (
102
+ child: RaisedButton (
103
+ textColor: Colors .white,
104
+ onPressed: () {
105
+ bubbleOverlay.closeBubble ();
106
+ },
107
+ color: Colors .red,
108
+ child: Text ('close bubble' ),
109
+ ),
84
110
)
85
111
],
86
112
),
You can’t perform that action at this time.
0 commit comments