You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
514 B
30 lines
514 B
//
|
|
// CalculatorView.swift
|
|
// App
|
|
//
|
|
// Created by BREUIL Yohann on 24/05/2023.
|
|
//
|
|
|
|
import SwiftUI
|
|
import Model
|
|
|
|
struct CalculatorView: View {
|
|
var body: some View {
|
|
NavigationStack {
|
|
ScrollView {
|
|
BlocListItem()
|
|
Divider()
|
|
UEListItem()
|
|
}
|
|
.navigationTitle("Calculette")
|
|
}
|
|
|
|
}
|
|
}
|
|
|
|
struct CalculatorView_Previews: PreviewProvider {
|
|
static var previews: some View {
|
|
CalculatorView()
|
|
}
|
|
}
|