-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add determinate or indeterminate type
- Loading branch information
Loïc GRIFFIE
committed
May 31, 2019
1 parent
14bc30d
commit 06ec210
Showing
3 changed files
with
68 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
17 changes: 17 additions & 0 deletions
17
Sejima/Source/MUCircularProgress/MUCircularProgressType.swift
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
// | ||
// MUCircularProgressType.swift | ||
// Sejima | ||
// | ||
// Created by Loïc GRIFFIE on 31/05/2019. | ||
// Copyright © 2019 Loïc GRIFFIE. All rights reserved. | ||
// | ||
|
||
import Foundation | ||
|
||
/// Define the type of the circular progress. | ||
public enum MUCircularProgressType: Int { | ||
/// Circular progress with min and max value | ||
case determinate | ||
/// Circular progress with indeterminate loading | ||
case indeterminate | ||
} |