Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Unverified Commit 63a8d67a authored by Wolf Montwé's avatar Wolf Montwé
Browse files

Change `core:ui:compose:demo` module to `app-ui-catalog

parent 9900fd43
Loading
Loading
Loading
Loading
+7 −0
Original line number Diff line number Diff line
# Thunderbird UI Catalog

Uses [`:core:ui:compose:designsystem`](../core/ui/compose/designsystem/README.md)

This is a catalog of all the components in the Thunderbird design system.

It is a work in progress, and will be updated as the design system evolves.
+2 −2
Original line number Diff line number Diff line
@@ -3,10 +3,10 @@ plugins {
}

android {
    namespace = "app.k9mail.core.ui.compose.demo"
    namespace = "app.k9mail.ui.catalog"

    defaultConfig {
        applicationId = "app.k9mail.core.ui.compose.demo"
        applicationId = "app.k9mail.ui.catalog"
        versionCode = 1
        versionName = "1.0"
    }
+1 −1
Original line number Diff line number Diff line
@@ -7,7 +7,7 @@
        android:roundIcon="@mipmap/ic_launcher_round"
        android:label="@string/app_name"
        android:supportsRtl="true"
        android:theme="@style/Theme.K9"
        android:theme="@style/Theme.Thunderbird"
        >
        <activity
            android:name=".MainActivity"
+1 −2
Original line number Diff line number Diff line
package app.k9mail.core.ui.compose.demo
package app.k9mail.ui.catalog

import android.os.Bundle
import androidx.activity.ComponentActivity
import androidx.activity.compose.setContent

class MainActivity : ComponentActivity() {
    override fun onCreate(savedInstanceState: Bundle?) {
        super.onCreate(savedInstanceState)
Loading