This commit is contained in:
2026-05-19 00:10:38 +02:00
parent db2290ba14
commit c68787cd01
93 changed files with 5855 additions and 0 deletions
@@ -0,0 +1,70 @@
/*
* Copyright 2026 MagicalBits
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package xyz.magicalbits.smsremote.profile
import androidx.compose.runtime.Composable
import androidx.compose.ui.tooling.preview.Preview
import xyz.magicalbits.smsremote.data.colleagueProfile
import xyz.magicalbits.smsremote.data.meProfile
import xyz.magicalbits.smsremote.theme.JetchatTheme
@Preview(widthDp = 340, name = "340 width - Me")
@Composable
fun ProfilePreview340() {
JetchatTheme {
ProfileScreen(meProfile)
}
}
@Preview(widthDp = 480, name = "480 width - Me")
@Composable
fun ProfilePreview480Me() {
JetchatTheme {
ProfileScreen(meProfile)
}
}
@Preview(widthDp = 480, name = "480 width - Other")
@Composable
fun ProfilePreview480Other() {
JetchatTheme {
ProfileScreen(colleagueProfile)
}
}
@Preview(widthDp = 340, name = "340 width - Me - Dark")
@Composable
fun ProfilePreview340MeDark() {
JetchatTheme(isDarkTheme = true) {
ProfileScreen(meProfile)
}
}
@Preview(widthDp = 480, name = "480 width - Me - Dark")
@Composable
fun ProfilePreview480MeDark() {
JetchatTheme(isDarkTheme = true) {
ProfileScreen(meProfile)
}
}
@Preview(widthDp = 480, name = "480 width - Other - Dark")
@Composable
fun ProfilePreview480OtherDark() {
JetchatTheme(isDarkTheme = true) {
ProfileScreen(colleagueProfile)
}
}