1
0
mirror of https://github.com/AllanWang/Frost-for-Facebook.git synced 2024-11-08 20:12:39 +01:00

Add nav deps

This commit is contained in:
Allan Wang 2023-06-22 17:26:34 -07:00
parent b73c014063
commit 487b064247
No known key found for this signature in database
GPG Key ID: C93E3F9C679D7A56
2 changed files with 26 additions and 0 deletions

View File

@ -190,6 +190,7 @@ dependencies {
implementation("androidx.compose.ui:ui:${composeVersion}") implementation("androidx.compose.ui:ui:${composeVersion}")
implementation("androidx.activity:activity-compose:1.7.2") implementation("androidx.activity:activity-compose:1.7.2")
implementation("androidx.lifecycle:lifecycle-viewmodel-compose:2.6.1") implementation("androidx.lifecycle:lifecycle-viewmodel-compose:2.6.1")
implementation("androidx.navigation:navigation-compose:2.6.0")
// Tooling support (Previews, etc.) // Tooling support (Previews, etc.)
implementation("androidx.compose.ui:ui-tooling:${composeVersion}") implementation("androidx.compose.ui:ui-tooling:${composeVersion}")
// Foundation (Border, Background, Box, Image, Scroll, shapes, animations, etc.) // Foundation (Border, Background, Box, Image, Scroll, shapes, animations, etc.)

View File

@ -0,0 +1,25 @@
/*
* Copyright 2023 Allan Wang
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package com.pitchedapps.frost.settings
import androidx.compose.runtime.Composable
import androidx.navigation.compose.rememberNavController
@Composable
fun SettingsScreen() {
val navController = rememberNavController()
}