71 lines
1.9 KiB
Kotlin
71 lines
1.9 KiB
Kotlin
/*
|
|
* 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)
|
|
}
|
|
}
|