19 lines
274 B
Swift
19 lines
274 B
Swift
|
//
|
||
|
// ComposeContentView.swift
|
||
|
//
|
||
|
//
|
||
|
// Created by MainasuK on 22/9/30.
|
||
|
//
|
||
|
|
||
|
import SwiftUI
|
||
|
|
||
|
public struct ComposeContentView: View {
|
||
|
public var body: some View {
|
||
|
ScrollView {
|
||
|
VStack {
|
||
|
Text("Hello")
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|