Frontend: icons
This commit is contained in:
parent
021e174f3a
commit
4b86cb560b
Binary file not shown.
After Width: | Height: | Size: 29 KiB |
|
@ -1,12 +1,17 @@
|
|||
package com.jaytux.simd.frontend
|
||||
|
||||
import androidx.compose.ui.graphics.painter.Painter
|
||||
import androidx.compose.ui.window.Window
|
||||
import androidx.compose.ui.window.application
|
||||
import frontend.composeapp.generated.resources.Res
|
||||
import frontend.composeapp.generated.resources.icon
|
||||
import org.jetbrains.compose.resources.painterResource
|
||||
|
||||
fun main() = application {
|
||||
Window(
|
||||
onCloseRequest = ::exitApplication,
|
||||
title = "frontend",
|
||||
title = "Intrinsics Viewer",
|
||||
icon = painterResource(Res.drawable.icon),
|
||||
) {
|
||||
App()
|
||||
}
|
||||
|
|
Binary file not shown.
After Width: | Height: | Size: 29 KiB |
|
@ -3,8 +3,9 @@
|
|||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>frontend</title>
|
||||
<title>Intrinsics Viewer</title>
|
||||
<link type="text/css" rel="stylesheet" href="styles.css">
|
||||
<link rel="icon" href="icon.png">
|
||||
<script type="application/javascript" src="composeApp.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
|
|
Loading…
Reference in New Issue