Skip to content

Commit 9a363ef

Browse files
committed
new buuble added
1 parent 7209f01 commit 9a363ef

File tree

3 files changed

+36
-1
lines changed

3 files changed

+36
-1
lines changed

drawoverotherapps/android/app/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ android {
3939
defaultConfig {
4040
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
4141
applicationId "youtube.sidtube.drawoverotherapps"
42-
minSdkVersion 16
42+
minSdkVersion 21
4343
targetSdkVersion 28
4444
versionCode flutterVersionCode.toInteger()
4545
versionName flutterVersionName

drawoverotherapps/android/app/src/main/AndroidManifest.xml

+9
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
android:name=".Application"
88
android:label="drawoverotherapps"
99
android:icon="@mipmap/ic_launcher">
10+
1011
<activity
1112
android:name=".MainActivity"
1213
android:launchMode="singleTop"
@@ -36,6 +37,14 @@
3637
<category android:name="android.intent.category.LAUNCHER"/>
3738
</intent-filter>
3839
</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" />
3948
<!-- Don't delete the meta-data below.
4049
This is used by the Flutter tool to generate GeneratedPluginRegistrant.java -->
4150
<meta-data

drawoverotherapps/lib/home.dart

+26
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import 'package:bubble_overlay/bubble_overlay.dart';
12
import 'package:flutter/material.dart';
23
import 'package:system_alert_window/system_alert_window.dart';
34

@@ -18,6 +19,8 @@ class _HomeScreenState extends State<HomeScreen> {
1819
await SystemAlertWindow.checkPermissions;
1920
}
2021

22+
final BubbleOverlay bubbleOverlay = BubbleOverlay();
23+
2124
@override
2225
Widget build(BuildContext context) {
2326
return Scaffold(
@@ -72,6 +75,19 @@ class _HomeScreenState extends State<HomeScreen> {
7275
child: Text('Show dialog over other apps'),
7376
),
7477
),
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+
),
7591
Center(
7692
child: RaisedButton(
7793
textColor: Colors.white,
@@ -81,6 +97,16 @@ class _HomeScreenState extends State<HomeScreen> {
8197
color: Colors.red,
8298
child: Text('close dialog'),
8399
),
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+
),
84110
)
85111
],
86112
),

0 commit comments

Comments
 (0)