v1.5
Update icon Move mini mode toolbar up into restricted edge Allow dark/light/auto appearance mode in Settings Fix web app file search not finding plist files.
|
Before Width: | Height: | Size: 7.2 KiB After Width: | Height: | Size: 10 KiB |
|
Before Width: | Height: | Size: 16 KiB After Width: | Height: | Size: 24 KiB |
|
Before Width: | Height: | Size: 662 B After Width: | Height: | Size: 757 B |
|
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 1.7 KiB |
|
Before Width: | Height: | Size: 16 KiB After Width: | Height: | Size: 24 KiB |
|
Before Width: | Height: | Size: 39 KiB After Width: | Height: | Size: 56 KiB |
|
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 1.7 KiB |
|
Before Width: | Height: | Size: 3.1 KiB After Width: | Height: | Size: 4.2 KiB |
|
Before Width: | Height: | Size: 39 KiB After Width: | Height: | Size: 56 KiB |
|
Before Width: | Height: | Size: 94 KiB After Width: | Height: | Size: 140 KiB |
@@ -26,10 +26,12 @@ struct TopBarMini: View {
|
|||||||
// Spacer()
|
// Spacer()
|
||||||
|
|
||||||
SearchBarMini(search: $search, reload: $reload)
|
SearchBarMini(search: $search, reload: $reload)
|
||||||
.frame(width: 180)
|
// .frame(width: 150)
|
||||||
|
.offset(x: 20)
|
||||||
|
.padding(.horizontal, 30)
|
||||||
// .padding(.top, 5)
|
// .padding(.top, 5)
|
||||||
|
|
||||||
// Spacer()
|
Spacer()
|
||||||
|
|
||||||
// Button("") {
|
// Button("") {
|
||||||
// withAnimation(.easeInOut(duration: 0.5)) {
|
// withAnimation(.easeInOut(duration: 0.5)) {
|
||||||
@@ -80,6 +82,7 @@ struct TopBarMini: View {
|
|||||||
.buttonStyle(SimpleButtonStyle(icon: "list.triangle", help: "Apps", color: Color("mode")))
|
.buttonStyle(SimpleButtonStyle(icon: "list.triangle", help: "Apps", color: Color("mode")))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
.padding(.horizontal, 10)
|
.padding(.horizontal, 10)
|
||||||
.padding(.top, 10)
|
.padding(.top, 10)
|
||||||
@@ -97,6 +100,6 @@ struct SearchBarMini: View {
|
|||||||
TextField("Search", text: $search)
|
TextField("Search", text: $search)
|
||||||
.textFieldStyle(SimpleSearchStyle(trash: true, reload: $reload, text: $search))
|
.textFieldStyle(SimpleSearchStyle(trash: true, reload: $reload, text: $search))
|
||||||
}
|
}
|
||||||
.frame(height: 30)
|
.frame(height: 20)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||