This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// DismissableView.swift | |
// | |
// Created by Andrew Jackson on 05/09/2020. | |
// | |
import SwiftUI | |
struct DismissableView<Content: View>: View { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// ReminderList.swift | |
// | |
// Demonstrates:- | |
// list settings (style, colouring etc ) | |
// autoscrolling | |
// control of focus in List, | |
// adding new values with enter, or double click, | |
// auto deleting nil values, | |
// using Combine for managed delay/UI updates |
OlderNewer