mirror of
https://github.com/cranci1/Sora.git
synced 2026-01-11 20:10:24 +00:00
* Minor changes * more minor changes * MORE MINOR CHANGES * Fixed one singular bug * Update SettingsViewGeneral.swift * fuck conflicts * fuck you and your credits * buh buh * Update SettingsViewAbout.swift * What's that? What's a properly working code without unnecessary issues? * Type shit maybe? * Create ios.yml * smol * type shi shi * end * Fixed system theme bug * (hopefully) fixed sliding items in search + recent searches spam * Fixed open keyboard in media view * Fixed searchviewdata + fixed toggle color being too light * fixed episode slider sensitivity * new recent searches, not fully done but wtv WHO CARES 💯 * Add module screen fix * Delete .github/workflows/ios.yml * UI modifications * Scroll to close keyboard * Text change * Downloadview transition * Search cards text fixed * Reduced header spacing + moved down a to match library * Text change * Small tab bar tweak for search view * added gradient to player buttons * reduced summary size * IBH special 💯 * Fixed different height text? * Removed seperator * Some more fixes start watching button
24 lines
430 B
Swift
24 lines
430 B
Swift
//
|
|
// TabBarController.swift
|
|
// Sulfur
|
|
//
|
|
// Created by Mac on 28/05/2025.
|
|
//
|
|
|
|
import SwiftUI
|
|
|
|
class TabBarController: ObservableObject {
|
|
@Published var isHidden = false
|
|
|
|
func hideTabBar() {
|
|
withAnimation(.easeInOut(duration: 0.15)) {
|
|
isHidden = true
|
|
}
|
|
}
|
|
|
|
func showTabBar() {
|
|
withAnimation(.easeInOut(duration: 0.10)) {
|
|
isHidden = false
|
|
}
|
|
}
|
|
}
|