Skip to content

Commit

Permalink
🔀 Merge branch 'ladislas/feature/lekaapp-add-robot-connection'
Browse files Browse the repository at this point in the history
  • Loading branch information
ladislas committed Nov 9, 2023
2 parents cf6887b + 091310f commit 806772d
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 353 deletions.
1 change: 1 addition & 0 deletions Apps/LekaApp/Project.swift
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ let project = Project.iOSApp(
version: "1.0.0",
dependencies: [
.project(target: "DesignKit", path: Path("../../Modules/DesignKit")),
.project(target: "RobotKit", path: Path("../../Modules/RobotKit")),
.external(name: "Yams"),
.external(name: "Lottie"),
],
Expand Down
3 changes: 2 additions & 1 deletion Apps/LekaApp/Sources/HomeView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
// SPDX-License-Identifier: Apache-2.0

import DesignKit
import RobotKit
import SwiftUI

struct HomeView: View {
Expand Down Expand Up @@ -43,7 +44,7 @@ struct HomeView: View {
}
.fullScreenCover(isPresented: $navigationVM.showRobotPicker) {
NavigationStack {
RobotPicker()
RobotConnectionView()
}
}
.fullScreenCover(isPresented: $navigationVM.showActivitiesFullScreenCover) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
// Copyright 2023 APF France handicap
// SPDX-License-Identifier: Apache-2.0

import RobotKit
import SwiftUI

struct FullScreenCoverToGameView: View {
Expand All @@ -15,7 +16,7 @@ struct FullScreenCoverToGameView: View {
for: PathsToGame.self,
destination: { destination in
switch destination {
case .robot: RobotPicker()
case .robot: RobotConnectionView()
case .user: ProfileSelector_Users()
case .game: GameView()
}
Expand Down

This file was deleted.

This file was deleted.

205 changes: 0 additions & 205 deletions Apps/LekaApp/Sources/Views/Robot/RobotPicker.swift

This file was deleted.

Loading

0 comments on commit 806772d

Please sign in to comment.