Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/Toni77777/EmptyList

EmptyList - List(SwiftUI) supports displaying Empty ListView for empty state
https://github.com/Toni77777/EmptyList

apple cocoapod ios list macos swift swift5 swiftui xcode xcode11

Last synced: about 2 months ago
JSON representation

EmptyList - List(SwiftUI) supports displaying Empty ListView for empty state

Awesome Lists containing this project

README

        

# EmptyList

[![Swift 5](https://img.shields.io/badge/swift-5-orange)](https://swift.org/)
[![Platforms](https://img.shields.io/cocoapods/p/EmptyList)](https://cocoapods.org/pods/EmptyList)
[![Version](https://img.shields.io/cocoapods/v/EmptyList.svg?style=flat)](https://cocoapods.org/pods/EmptyList)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)

EmptyList - List(SwiftUI) supports displaying Empty ListView for empty state

## Usage

```swift
EmptyList(countries, listRowView: { country in
Text(country.name)
}, emptyListView: {
Text("No countries") // View displayed when the items collection isEmpty
})

// Source data for List. Source item must implement Identifiable protocol
struct Country: Identifiable {
let id: UUID
let name: String
}

// Source data items for List
let countries: [Country] = [
Country(id: UUID(), name: "Poland"),
Country(id: UUID(), name: "Germany")
/// Others countries
]
```


## Example

Look [here](https://github.com/Toni77777/EmptyList/tree/master/Demo) if need more details

## Requirements

- Xcode 11+
- Swift 5.2+

And same requirements how to use [SwiftUI](https://developer.apple.com/documentation/swiftui). Availability:
- iOS 13.0+
- macOS 10.15+
- Mac Catalyst 13.0+
- tvOS 13.0+
- watchOS 6.0+

## Installation

Feel free copy-paste ```EmptyList``` to your project or can install via [CocoaPods](https://cocoapods.org).
For installation through [CocoaPods](https://cocoapods.org) add the following line to your Podfile:

```ruby
pod 'EmptyList', '~> 1.0.0'
```

## License

EmptyList is available under the MIT license. See the LICENSE file for more info.