Skip to content

Commit

Permalink
Merge pull request #16 from SimformSolutionsPvtLtd/develop
Browse files Browse the repository at this point in the history
Develop to Master
  • Loading branch information
bhargavbajani-simformsolutions authored May 30, 2024
2 parents 6f8c15a + 98f27c4 commit cd0a449
Show file tree
Hide file tree
Showing 48 changed files with 1,583 additions and 1,029 deletions.
4 changes: 2 additions & 2 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
// swift-tools-version:5.2
// swift-tools-version:5.7
// The swift-tools-version declares the minimum version of Swift required to build this package.

import PackageDescription

let package = Package(
name: "SSToastMessage",
platforms: [
.iOS(.v13),
.iOS(.v14),
.macOS(.v10_15)
],
products: [
Expand Down
65 changes: 36 additions & 29 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<a href="https://www.simform.com/"><img src="https://github.com/SimformSolutionsPvtLtd/SSToastMessage/blob/master/simformBanner.png"></a>
![SSToastMessage Banner](banner.png)

SSToastMessage
=============
Expand All @@ -11,8 +11,15 @@ SSToastMessage
[![PRs Welcome][PR-image]][PR-url]
[![Twitter](https://img.shields.io/badge/[email protected]?style=flat)](https://twitter.com/simform)

Create Toast Views with Minimal Effort in SwiftUI Using SSToastMessage. SSToastMessage enables you to effortlessly add toast notifications, alerts, and floating messages to any view on both iPhone and macOS. With SSToastMessage, you can display left and right toast views over any top-level view, making it incredibly versatile and powerful. Designed to be simple, lightweight, and user-friendly, SSToastMessage allows you to show popups with a single line of code. Enhance your app's user experience with seamless and stylish notifications.

## Features

- [x] Customisable toast view
- [x] Multiple options for show toast view
- [x] Cross-Platform (iOS & macOS)
- [x] Flexible Positioning

SSToastMessage is written in SwiftUI. It will add toast, alert, and floating message view over the top of any view. It is intended to be simple, lightweight, and easy to use. It will be a popup with a single line of code.

Screenshots
---------
Expand All @@ -25,22 +32,26 @@ Setup Instructions
------------------
To integrate Toast-Swift into your Xcode project using CocoaPods, specify it in your `Podfile`:
```ruby
pod 'SSToastMessage', '~> 1.0.0'
pod 'SSToastMessage'
```
and in your code add `import SSToastMessage`.

[Swift Package Manager](https://swift.org/package-manager/)
------------------
When using Xcode 11 or later, you can install `SSToastMessage` by going to your Project settings > `Swift Packages` and add the repository by providing the GitHub URL. Alternatively, you can go to `File` > `Swift Packages` > `Add Package Dependencies...`

dependencies: [
.package(url: "https://github.com/SimformSolutionsPvtLtd/SSToastMessage.git", from: "1.0.0")
]

## Manually

1. Add `MessageView.swift`, `DispatchWorkHolder.swift` and `View+Extension.swift` to your project.
1. Add `MessageView.swift`, `DispatchWorkHolder.swift`, `ViewModel.swift` and `View+Extension.swift` to your project.
2. Grab yourself a cold 🍺.

## Requirements
* iOS 13+
* iOS 14+
* macos 13+
* Xcode 11+

# Usage
Expand Down Expand Up @@ -98,7 +109,7 @@ struct ContentView: View {
}
}.padding(15)
}
.frame(width: UIScreen.main.bounds.width, height: 110)
.frame(height: 110)
.background(Color(red: 0.85, green: 0.65, blue: 0.56))
}
}
Expand All @@ -120,41 +131,37 @@ Way easy to customize!

Element | Declaration | Description
--------|-----------|-----
type | `type: MessageType` | set type of view alert, toast and float.
type | `type: MessageType` | set type of view alert, toast and floater, left toast view and right toast view.
position | `position: Position` | top or bottom (for default case it just determines animation direction).
animation | `animation: Animation` | custom animation for message view sliding onto screen.
autohideDuration | `autohideDuration: Double?` | time after which message view should disappear.
horizontalPadding | `horizontalPadding: Double?` | for adding horizontalPadding in toast view.
duration | `duration: Double?` | time after which message view should disappear.
closeOnTap | `closeOnTap: Bool` | on message view tap it should disappear.
onTap | `onTap: () -> Void` | on message view tap perform any action or navigation.
closeOnTapOutside | `closeOnTapOutside: Bool` | on outside tap message view should disappear.
onTap | `onTap: () -> Void` | on message view tap perform any action or navigation.
onToastHide | `onToastHide: () -> Void` | on toast hide perform any action.


See the demo project for more examples.

<h3><a href="https://github.com/SimformSolutionsPvtLtd"><u>🗂 Check out our other libraries→</u></a></h3>
## 🤝 How to Contribute

Whether you're helping us fix bugs, improve the docs, or a feature request, we'd love to have you! :muscle:

Check out our [**Contributing Guide**](CONTRIBUTING.md) for ideas on contributing.

## Find this example useful? ❤️

Give a ⭐️ if this project helped you!

## Check out our other Libraries

<h3><a href="https://github.com/SimformSolutionsPvtLtd/Awesome-Mobile-Libraries"><u>🗂 Simform Solutions Libraries→</u></a></h3>


## MIT License

Copyright (c) 2020 Simform Solutions

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details

[PR-image]:https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat
[PR-url]:http://makeapullrequest.com
Expand Down
36 changes: 36 additions & 0 deletions SSToastMessage.podspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
#
# Be sure to run `pod lib lint SSToastMessage.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see https://guides.cocoapods.org/syntax/podspec.html
#

Pod::Spec.new do |s|
s.name = 'SSToastMessage'
s.version = '2.0.0'
s.platform = :ios
s.platform = :osx
s.swift_versions = '5.0'
s.summary = 'Simple popup view build in SwiftUI.'
s.description = <<-DESC
Create Toast Views with Minimal Effort in SwiftUI Using SSToastMessage.SSToastMessage enables you to effortlessly add toast
notifications, alerts, and floating messages to any view on both iPhone and macOS. With SSToastMessage, you can display left and
right toast views over any top-level view, making it incredibly versatile and powerful. Designed to be simple, lightweight, and
user-friendly, SSToastMessage allows you to show popups with a single line of code. Enhance your app's user experience with seamless
and stylish notifications.
DESC

s.homepage = 'https://github.com/SimformSolutionsPvtLtd/SSToastMessage'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Ankit Panchal' => '[email protected]' }
s.source = { :git => 'https://github.com/SimformSolutionsPvtLtd/SSToastMessage.git', :tag => s.version.to_s }
s.social_media_url = 'https://www.simform.com'

s.ios.deployment_target = '14.0'
s.osx.deployment_target = '13.0'

s.source_files = '**/Sources/Classes/*.swift'
s.frameworks = ['SwiftUI']

end
12 changes: 0 additions & 12 deletions SSToastMessage/Example/Podfile

This file was deleted.

Loading

0 comments on commit cd0a449

Please sign in to comment.