This app is a basic calculator app for learning Kotlin Multiplatform.
- Display text: Create a display text area using a Text composable.
- Setup State: Create a state variable using mutableStateOf to control the display text.
- Button Updates: Update the state variable when a button is pressed.
- Calculate: Parse the state variable to perform the calculation when the equals button is pressed.
- Display result: Display the result of the calculation in the display text area.