- Connect SettingsView font selection to WebView CSS rendering - Add dynamic font size and family mapping in WebView - Implement CSS custom properties for responsive font scaling - Add font family fallback stacks for cross-platform compatibility - Update WebView to use Settings object for typography configuration
14 lines
278 B
Swift
14 lines
278 B
Swift
//
|
|
// PAuthRepository.swift
|
|
// readeck
|
|
//
|
|
// Created by Ilyas Hallak on 10.06.25.
|
|
//
|
|
|
|
|
|
protocol PAuthRepository {
|
|
func login(username: String, password: String) async throws -> User
|
|
func logout() async throws
|
|
func getCurrentSettings() async throws -> Settings?
|
|
}
|