Skip to content

Commit

Permalink
Feat: Update fee rate slider position to start from 1 instead of 0
Browse files Browse the repository at this point in the history
  • Loading branch information
Prakhar-Agarwal-byte authored and thunderbiscuit committed Jul 4, 2023
1 parent 1abf6a4 commit ad3f1e2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ internal fun SendScreen(navController: NavHostController, walletViewModel: Walle
modifier = Modifier.padding(top = 16.dp)
)

var sliderPosition by remember { mutableStateOf(0f) }
var sliderPosition by remember { mutableStateOf(1f) }
Slider(
modifier = Modifier.semantics { contentDescription = "Localized Description" },
value = sliderPosition,
Expand Down

0 comments on commit ad3f1e2

Please sign in to comment.