@@ -10,7 +10,7 @@ inspect DataStore preferences, monitor logs, and create custom debugging modules
1010Currently, there are a couple of other debug menu libraries,
1111like [ Lens-Logger] ( https://github.com/farhazulMullick/Lens-Logger/tree/feat/log-datastore )
1212and [ Beagle] ( https://github.com/pandulapeter/beagle ) , however, they were either focused on a limited set of features or
13- interfered with the LayoutInpector in Android Studio.
13+ interfered with the LayoutInspector in Android Studio.
1414
1515This library offers a lightweight, easy-to-use, and modular debug menu that you can easily integrate into your app and
1616customise to your needs.
@@ -33,7 +33,7 @@ customise to your needs.
3333
3434### Basic Usage
3535
36- In order to use the library, you first need to add the FAB to your Activity/Composable; this changes depending on the
36+ To use the library, you first need to add the FAB to your Activity/Composable; this changes depending on the
3737project.
3838
3939<details >
@@ -134,8 +134,8 @@ If you only want the menu to be opened through shake, you can pass `enableShake`
134134
135135``` kotlin
136136DebugMenuOverlay (
137- showFab = false , // <-- Disable FAB buttoj
138- enableShake = true , // <-- Enalbe shake to open
137+ showFab = false , // <-- Disable FAB button
138+ enableShake = true , // <-- Enable shake to open
139139 modules = listOf (
140140 // your modules...
141141 )
@@ -194,7 +194,7 @@ class AnalyticsManager {
194194
195195** Adding DataStore Module**
196196
197- Just add the ` DataStoreModule ` class to your list of Modules, and pass the list of DataStores and you're good to go. The
197+ Just add the ` DataStoreModule ` class to your list of Modules, and pass the list of DataStores and, you're good to go. The
198198UI Will automatically generate the UI for every entry.
199199
200200``` kotlin
@@ -294,7 +294,7 @@ class DemoApp : Application() {
294294<br />
295295The dynamic module allows you to add custom actions to the debug menu. They can either be:
296296
297- - Global actions: These actions are displayed in the debug menu, and can be triggered from anywhere in the app.
297+ - Global actions: These actions are displayed in the debug menu and can be triggered from anywhere in the app.
298298- Dynamic Actions: These actions are only displayed when the user is in a specific screen and get automatically removed
299299 when the user navigates away from that screen.
300300
0 commit comments