-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #186 from adevinta/component/badge
[Badge] Added attach(to:, position:) + fixed isBorderVisible
- Loading branch information
Showing
4 changed files
with
214 additions
and
77 deletions.
There are no files selected for viewing
19 changes: 19 additions & 0 deletions
19
core/Sources/Components/Badge/Properties/Public/BadgePosition.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,19 @@ | ||
// | ||
// BadgePosition.swift | ||
// SparkCore | ||
// | ||
// Created by louis.borlee on 16/06/2023. | ||
// Copyright © 2023 Adevinta. All rights reserved. | ||
// | ||
|
||
import Foundation | ||
|
||
/// Enum that represents the position where the ``BadgeView`` can be attached on another view | ||
/// | ||
/// There are two possible positions: | ||
/// - topTrailingCorner | ||
/// - trailing | ||
public enum BadgePosition: CaseIterable { | ||
case topTrailingCorner | ||
case trailing | ||
} |
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
Oops, something went wrong.