Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ android {
applicationId = "co.adityarajput.notifilter"
minSdk = 29
targetSdk = 36
versionCode = 17
versionName = "4.1.1"
versionCode = 18
versionName = "4.1.2"

testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ package co.adityarajput.notifilter.views.screens

import androidx.compose.foundation.layout.Box
import androidx.compose.foundation.layout.fillMaxSize
import androidx.compose.foundation.layout.height
import androidx.compose.foundation.layout.padding
import androidx.compose.foundation.lazy.LazyColumn
import androidx.compose.foundation.lazy.items
Expand All @@ -15,6 +16,7 @@ import androidx.compose.ui.res.painterResource
import androidx.compose.ui.res.pluralStringResource
import androidx.compose.ui.res.stringResource
import androidx.compose.ui.text.style.TextAlign
import androidx.compose.ui.unit.dp
import androidx.lifecycle.viewmodel.compose.viewModel
import co.adityarajput.notifilter.R
import co.adityarajput.notifilter.data.models.Any
Expand Down Expand Up @@ -151,6 +153,7 @@ fun FiltersScreen(
true,
)
}
item { Box(Modifier.height(100.dp)) {} }
}
}
if (viewModel.selectedFilter != null && viewModel.dialogState != null)
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<resources>
<string name="app_name">NotiFilter</string>
<string name="app_name_launcher">NotiFilter</string>
<string name="app_version">4.1.1</string>
<string name="app_version">4.1.2</string>

<string name="no_filters">No filters added.\nTap + to get started.</string>
<string name="on_weekdays">"on weekdays "</string>
Expand Down
1 change: 1 addition & 0 deletions metadata/en-US/changelogs/18.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
fix: Pad the list of filters to prevent blocking by FAB