HTML (index.html)
html
Simple App Welcome to Our Simple App
This is a very basic example of a web app.
CSS (styles.css) css body { font-family: Arial, sans-serif; margin: 20px; text-align: center; } h1 {
color: #333;
}
JavaScript (app.js)
javascript
// 这里可以添加一些交互逻辑,但在这个例子中,我们保持它为空
2. iOS平台(Swift)
在iOS上,你将使用Swift(或Objective-C)和UIKit(或SwiftUI)来开辟。这里是一个SwiftUI视图控制器的非常基础的框架。
swift
import SwiftUI
struct ContentView: View {
var body: some View {
VStack {
Text(“Welcome to Our Simple App”)
.font(.title)
Text(“This is a very basic example of an iOS app.”)
.font(.body)
}
.padding()
}
}
struct ContentView_Previews: PreviewProvider {
static var previews: some View {
ContentView()
}
}
3. Android平台(Kotlin)
在Android上,你将使用Kotlin(或Java)和Android SDK来开辟。这里是一个简朴的Activity的布局和Kotlin代码片段。
activity_main.xml (布局文件)
xml
<?xml version="1.0" encoding="utf-8"?>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Welcome to Our Simple App"
android:textSize="24sp" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="This is a very basic example of an Android app."
HTML (index.html)
html
Simple App Welcome to Our Simple App
This is a very basic example of a web app.
CSS (styles.css) css body { font-family: Arial, sans-serif; margin: 20px; text-align: center; } h1 {
color: #333;
}
JavaScript (app.js)
javascript
// 这里可以添加一些交互逻辑,但在这个例子中,我们保持它为空
2. iOS平台(Swift)
在iOS上,你将使用Swift(或Objective-C)和UIKit(或SwiftUI)来开辟。这里是一个SwiftUI视图控制器的非常基础的框架。
swift
import SwiftUI
struct ContentView: View {
var body: some View {
VStack {
Text(“Welcome to Our Simple App”)
.font(.title)
Text(“This is a very basic example of an iOS app.”)
.font(.body)
}
.padding()
}
}
struct ContentView_Previews: PreviewProvider {
static var previews: some View {
ContentView()
}
}
3. Android平台(Kotlin)
在Android上,你将使用Kotlin(或Java)和Android SDK来开辟。这里是一个简朴的Activity的布局和Kotlin代码片段。
activity_main.xml (布局文件)
xml
<?xml version="1.0" encoding="utf-8"?>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Welcome to Our Simple App"
android:textSize="24sp" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="This is a very basic example of an Android app."