thePlebDev / Clicker

A Twitch Android client built with moderators in mind. Join the subreddit to voice your ideas, questions and concerns. Link to app on Google Play store below. Next update is 2024-09-09
https://play.google.com/store/apps/details?id=elliott.software.clicker
7 stars 4 forks source link

Using composables.txt to make the composable functions skippable by ensuring all of its parameters are stable #1524

Open thePlebDev opened 1 month ago

thePlebDev commented 1 month ago

Proposed change

Why is this important

Additional context

thePlebDev commented 1 month ago

Here is old code that is not stable:

@Composable
fun ForwardSlash(
    modifier:Modifier,
    forwardSlashCommandList: List<ForwardSlashCommands>,
    clickedCommandAutoCompleteText:(String)->Unit,
){

}