Remove unnecessary comments from template and stray semicolon

master
Lonami Exo 2022-10-24 11:40:29 +02:00
parent 50a2403a85
commit 0db1599cf7
4 changed files with 1 additions and 24 deletions

View File

@ -15,7 +15,6 @@ class MainActivity : ComponentActivity() {
super.onCreate(savedInstanceState)
setContent {
TalariaTheme {
// A surface container using the 'background' color from the theme
Surface(
modifier = Modifier.fillMaxSize(),
color = MaterialTheme.colors.background

View File

@ -8,7 +8,7 @@ import java.time.LocalDateTime
import java.time.format.DateTimeFormatter
interface DialogRepository {
fun loadDialogs(): List<Dialog>;
fun loadDialogs(): List<Dialog>
}
class NativeDialogRepository : DialogRepository {

View File

@ -16,15 +16,6 @@ private val LightColorPalette = lightColors(
primary = Purple500,
primaryVariant = Purple700,
secondary = Teal200
/* Other default colors to override
background = Color.White,
surface = Color.White,
onPrimary = Color.White,
onSecondary = Color.Black,
onBackground = Color.Black,
onSurface = Color.Black,
*/
)
@Composable

View File

@ -6,23 +6,10 @@ import androidx.compose.ui.text.font.FontFamily
import androidx.compose.ui.text.font.FontWeight
import androidx.compose.ui.unit.sp
// Set of Material typography styles to start with
val Typography = Typography(
body1 = TextStyle(
fontFamily = FontFamily.Default,
fontWeight = FontWeight.Normal,
fontSize = 16.sp
)
/* Other default text styles to override
button = TextStyle(
fontFamily = FontFamily.Default,
fontWeight = FontWeight.W500,
fontSize = 14.sp
),
caption = TextStyle(
fontFamily = FontFamily.Default,
fontWeight = FontWeight.Normal,
fontSize = 12.sp
)
*/
)