mirror of
https://github.com/easychen/pushdeer.git
synced 2024-11-01 16:19:19 +08:00
d3050e154f
修改配置为pushdeer官方配置(包名,团队标识,api域名); 补充新添加的文字的英文翻译 (国际化); 设备和key是空列表时,加一个提示,让用户知道可以新增; 尝试解决列表删除项后UI偶尔没刷新的bug; 首次打开提示注册设备; 首次自动生成一个 key; 消息列表放到第一个位置; 推送测试时自动生成一个key; 后台进入前台后, 刷新本地消息列表; 键盘上方添加完成按钮, 用于收键盘; 发送推送测试后 自动收键盘; 及时清角标, 拯救强迫症; 为了保持一致, 设置页也改为可滑动; 添加SelfHosted配置, 可以直接一套代码跑出两种版本; 支持服务自建; 添加Env统一管理环境变量.
60 lines
1.6 KiB
Swift
60 lines
1.6 KiB
Swift
//
|
|
// ListTest.swift
|
|
// PushDeer
|
|
//
|
|
// Created by HEXT on 2022/2/13.
|
|
//
|
|
|
|
import SwiftUI
|
|
|
|
/// 这是一个测试代码, 测试APP中几个列表改成List的可行性, 最后证明在iOS 15以上勉强可以, iOS 14 不太行, 样式达不到UI标准
|
|
struct ListTestView: View {
|
|
var body: some View {
|
|
List {
|
|
Text("Hello, world!1")
|
|
Text("Hello, world!2")
|
|
.listRowBackground(Color.red)
|
|
Text("Hello, world!3")
|
|
|
|
ForEach.init([
|
|
DeviceItem(id: 0, uid: "", name: "Hext's iPhone 11", type: "", device_id: "", is_clip: 1)
|
|
]) {
|
|
DeviceItemView(deviceItem: $0)
|
|
}
|
|
.onDelete(perform: { indexSet in
|
|
HToast.showSuccess("删除成功")
|
|
})
|
|
// .listRowSeparator(.hidden)
|
|
// .listRowBackground(Color.red)
|
|
|
|
}
|
|
.onAppear(perform: {
|
|
UITableView.appearance().backgroundColor = UIColor.clear
|
|
UITableView.appearance().separatorStyle = .none
|
|
UITableView.appearance().separatorColor = UIColor.clear
|
|
})
|
|
.background(Color.white)
|
|
|
|
// .listStyle(DefaultListStyle())
|
|
// .listStyle(BorderedListStyle()) //
|
|
// .listStyle(CarouselListStyle()) //
|
|
// .listStyle(EllipticalListStyle()) //
|
|
// .listStyle(GroupedListStyle())
|
|
// .listStyle(InsetListStyle())
|
|
// .listStyle(InsetGroupedListStyle())
|
|
.listStyle(PlainListStyle())
|
|
// .listStyle(SidebarListStyle())
|
|
|
|
.refresh {
|
|
HToast.showSuccess("刷新成功")
|
|
}
|
|
}
|
|
}
|
|
|
|
struct ListTestView_Previews: PreviewProvider {
|
|
static var previews: some View {
|
|
ListTestView()
|
|
.environmentObject(AppState.shared)
|
|
}
|
|
}
|