File tree Expand file tree Collapse file tree
mobile/androidApp/src/main/kotlin/app/myfaq/android/screens Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -17,6 +17,7 @@ import androidx.compose.material.icons.Icons
1717import androidx.compose.material.icons.filled.Add
1818import androidx.compose.material.icons.filled.Delete
1919import androidx.compose.material3.AlertDialog
20+ import androidx.compose.material3.Button
2021import androidx.compose.material3.Card
2122import androidx.compose.material3.CenterAlignedTopAppBar
2223import androidx.compose.material3.ExperimentalMaterial3Api
@@ -169,6 +170,10 @@ private fun EmptyWorkspacesState(
169170 style = MaterialTheme .typography.bodyMedium,
170171 color = MaterialTheme .colorScheme.onSurfaceVariant,
171172 )
173+ Spacer (modifier = Modifier .height(16 .dp))
174+ Button (onClick = onAdd) {
175+ Text (" Add Instance" )
176+ }
172177 }
173178 }
174179}
You can’t perform that action at this time.
0 commit comments