@@ -2,16 +2,47 @@ package com.yara.raco.ui.components
22
33import androidx.compose.foundation.Image
44import androidx.compose.foundation.clickable
5- import androidx.compose.foundation.layout.*
5+ import androidx.compose.foundation.layout.Column
6+ import androidx.compose.foundation.layout.Row
7+ import androidx.compose.foundation.layout.WindowInsets
8+ import androidx.compose.foundation.layout.fillMaxWidth
9+ import androidx.compose.foundation.layout.height
10+ import androidx.compose.foundation.layout.padding
11+ import androidx.compose.foundation.layout.statusBars
12+ import androidx.compose.foundation.layout.systemBars
13+ import androidx.compose.foundation.layout.width
614import androidx.compose.foundation.lazy.LazyColumn
715import androidx.compose.foundation.lazy.items
816import androidx.compose.foundation.shape.CircleShape
917import androidx.compose.material.icons.Icons
1018import androidx.compose.material.icons.filled.ArrowBack
11- import androidx.compose.material.icons.outlined.*
12- import androidx.compose.material3.*
13- import androidx.compose.runtime.*
19+ import androidx.compose.material.icons.outlined.Campaign
20+ import androidx.compose.material.icons.outlined.Code
21+ import androidx.compose.material.icons.outlined.Description
22+ import androidx.compose.material.icons.outlined.Info
23+ import androidx.compose.material.icons.outlined.Person
24+ import androidx.compose.material.icons.outlined.Policy
25+ import androidx.compose.material3.CardDefaults
26+ import androidx.compose.material3.ExperimentalMaterial3Api
27+ import androidx.compose.material3.Icon
28+ import androidx.compose.material3.IconButton
29+ import androidx.compose.material3.ListItem
30+ import androidx.compose.material3.LocalContentColor
31+ import androidx.compose.material3.LocalTextStyle
32+ import androidx.compose.material3.MaterialTheme
33+ import androidx.compose.material3.OutlinedCard
34+ import androidx.compose.material3.Scaffold
35+ import androidx.compose.material3.Surface
36+ import androidx.compose.material3.Text
37+ import androidx.compose.material3.TextButton
38+ import androidx.compose.material3.TopAppBar
39+ import androidx.compose.material3.contentColorFor
40+ import androidx.compose.runtime.Composable
41+ import androidx.compose.runtime.CompositionLocalProvider
42+ import androidx.compose.runtime.getValue
43+ import androidx.compose.runtime.mutableStateOf
1444import androidx.compose.runtime.saveable.rememberSaveable
45+ import androidx.compose.runtime.setValue
1546import androidx.compose.ui.Alignment
1647import androidx.compose.ui.Modifier
1748import androidx.compose.ui.draw.clip
@@ -312,37 +343,31 @@ val authors = mapOf(
312343val licenses = listOf (
313344 LicenseNotice (
314345 name = " Kotlin Programming Language" ,
315- copyright = " Copyright 2010-2022 JetBrains s.r.o. and Kotlin Programming Language contributors." ,
346+ copyright = " Copyright © 2010-2023 JetBrains s.r.o. and Kotlin Programming Language contributors." ,
316347 licenseName = " Apache License 2.0" ,
317348 licenseUrl = " https://github.com/JetBrains/kotlin/blob/master/license/LICENSE.txt"
318349 ),
319350 LicenseNotice (
320351 name = " Android Jetpack" ,
321- copyright = " Copyright 2020 Google LLC " ,
352+ copyright = " Copyright © 2023 The Android Open Source Project " ,
322353 licenseName = " Apache License 2.0" ,
323354 licenseUrl = " https://github.com/androidx/androidx/blob/androidx-main/LICENSE.txt"
324355 ),
325- LicenseNotice (
326- name = " Accompanist" ,
327- copyright = " Copyright 2020 The Android Open Source Project" ,
328- licenseName = " Apache License 2.0" ,
329- licenseUrl = " https://github.com/google/accompanist/blob/main/LICENSE"
330- ),
331356 LicenseNotice (
332357 name = " HtmlText" ,
333- copyright = " Copyright 2021 Alexander Karkossa" ,
358+ copyright = " Copyright © 2021 Alexander Karkossa" ,
334359 licenseName = " Apache License 2.0" ,
335360 licenseUrl = " https://github.com/ch4rl3x/HtmlText/blob/main/LICENSE"
336361 ),
337362 LicenseNotice (
338363 name = " OkHttp" ,
339- copyright = " Copyright 2019 Square, Inc." ,
364+ copyright = " Copyright © 2019 Square, Inc." ,
340365 licenseName = " Apache License 2.0" ,
341366 licenseUrl = " https://github.com/square/okhttp/blob/master/LICENSE.txt"
342367 ),
343368 LicenseNotice (
344369 name = " WeekSchedule" ,
345- copyright = " Copyright 2021 Daniel Rampelt" ,
370+ copyright = " Copyright © 2021 Daniel Rampelt" ,
346371 licenseName = " MIT License" ,
347372 licenseUrl = " https://github.com/drampelt/WeekSchedule/blob/main/LICENSE"
348373 )
0 commit comments