- 66
- 12 614
Software Development
เข้าร่วมเมื่อ 8 ธ.ค. 2023
This channel is use for all software development related stuff. if you are facing any software devlopement related queries, issues then please contact us on provided email ID. we will replay as soon as possible.
Incoming call Animation in SwiftUI using xcode 16
Video contains the animation for incoming call. this animation is developed using swiftUI.
Here are code for calling animation
ZStack {
// Outer
Circle()
.fill(Color(pulsingColor).gradient)
.frame(width: 172, height: 172)
//.blendMode(.lighten)
.opacity(0.1)
.scaleEffect(isCalling ? 0.8 : 1.2)
.zIndex(isCalling ? 0 : 1)
.animation(easeGently.delay(0.2), value: isCalling)
// Middle
Circle()
.fill(Color(pulsingColor).gradient)
.frame(width: 172, height: 172)
//.blendMode(.screen)
.opacity(0.2)
.scaleEffect(isCalling ? 0.7 : 1.1)
.zIndex(isCalling ? 0 : 3)
.animation(easeGently.delay(0.4), value: isCalling)
// Inner
Circle()
.fill(Color(pulsingColor).gradient)
.frame(width: 172, height: 172)
//.blendMode(.colorDodge)
.opacity(0.3)
.zIndex(isCalling ? 0 : 3)
.scaleEffect(isCalling ? 0.5 : 1.2)
.animation(easeGently.delay(0.6), value: isCalling)
Image("user")
.resizable()
.frame(width: 172, height: 172)
.hueRotation(Angle(degrees: isCalling ? 0 : .random(in: 0...120)))
.clipShape(Circle())
.opacity(isCalling ? 1 : 0.1)
.scaleEffect(isCalling ? 1 : 0.5)
.animation(easeGently, value: isCalling)
}
.onAppear {
withAnimation {
isCalling.toggle()
}
}
Here are code for calling animation
ZStack {
// Outer
Circle()
.fill(Color(pulsingColor).gradient)
.frame(width: 172, height: 172)
//.blendMode(.lighten)
.opacity(0.1)
.scaleEffect(isCalling ? 0.8 : 1.2)
.zIndex(isCalling ? 0 : 1)
.animation(easeGently.delay(0.2), value: isCalling)
// Middle
Circle()
.fill(Color(pulsingColor).gradient)
.frame(width: 172, height: 172)
//.blendMode(.screen)
.opacity(0.2)
.scaleEffect(isCalling ? 0.7 : 1.1)
.zIndex(isCalling ? 0 : 3)
.animation(easeGently.delay(0.4), value: isCalling)
// Inner
Circle()
.fill(Color(pulsingColor).gradient)
.frame(width: 172, height: 172)
//.blendMode(.colorDodge)
.opacity(0.3)
.zIndex(isCalling ? 0 : 3)
.scaleEffect(isCalling ? 0.5 : 1.2)
.animation(easeGently.delay(0.6), value: isCalling)
Image("user")
.resizable()
.frame(width: 172, height: 172)
.hueRotation(Angle(degrees: isCalling ? 0 : .random(in: 0...120)))
.clipShape(Circle())
.opacity(isCalling ? 1 : 0.1)
.scaleEffect(isCalling ? 1 : 0.5)
.animation(easeGently, value: isCalling)
}
.onAppear {
withAnimation {
isCalling.toggle()
}
}
มุมมอง: 33
วีดีโอ
Signature view in ios using Xcode 16 - Swift 6
มุมมอง 3916 ชั่วโมงที่ผ่านมา
Video contains the signature view and save signature as a photo in phone gallery. For more videos like, comment, share and subscribe my channel.
Calling Animation in SwiftUI Using Phase Animator.
มุมมอง 30หลายเดือนก่อน
Calling animation in swiftUI ZStack { Circle() .fill(Color(pulsingColor).gradient) .frame(width: 172, height: 172) .opacity(0.1) .scaleEffect(isCalling ? 0.8 : 1.2) .zIndex(isCalling ? 0 : 1) .animation(easeGently.delay(0.2), value: isCalling) Circle() .fill(Color(pulsingColor).gradient) .frame(width: 172, height: 172) .opacity(0.2) .scaleEffect(isCalling ? 0.7 : 1.1) .zIndex(isCalling ? 0 : 3)...
How to underline UILabel in swift with xcode 16?
มุมมอง 362 หลายเดือนก่อน
Video shows Underline label in swift. use the NSMutableAttributedString for set underline. For more video like, comment and share our channel.
Half sheet view controller in iOS Swift UISheetPresentationController
มุมมอง 523 หลายเดือนก่อน
Video shows how to open half screen view controller. Bottom sheet in iOS swift. For more videos like, comment, share and subscribe my channel.
How To Pass Data Between View Controllers in Swift?
มุมมอง 603 หลายเดือนก่อน
Video contains how to pass the data between view controller and showing in next screen. For more details watch full video. For more video regarding iOS Development like, comment, share and subscribe my channel.
Difference Between Push and Present controller in iOS swift.
มุมมอง 763 หลายเดือนก่อน
In this video shows navigate screen using 2 method. 1. Push 2. Present. For different behaviour in this 2 methods watch full video. For more videos like, comment, share and subscribe my channel.
iOS Navigation Controller in xcode 16
มุมมอง 1563 หลายเดือนก่อน
Video shows how we can add navigation controller in Xcode storyboard and how we can navigate screen from another screen. How to add navigation controller? In storyboard select video controller and click on Editor : Embed in : Navigation controller.
What is UIKit and SwiftUI? and difference between them.
มุมมอง 643 หลายเดือนก่อน
SwiftUI is a declarative framework for building user interfaces for iOS, iPadOS, watchOS, tvSwiftUI is a declarative framework for building user interfaces for iOS, iPadOS, watchOS, tvOS, visionOS and macOS, developed by Apple Inc. for the Swift programming language. SwiftUI is a modern way to declare user interfaces for any Apple platform. Create beautiful, dynamic apps faster than ever before...
iOS Basic Learning for Fresher.
มุมมอง 474 หลายเดือนก่อน
iOS learning in fresher. how to create iOS app in Xcode, how to run app , how to add pod file in app and what is info.plist file.
Gradient progress bar in swift
มุมมอง 987 หลายเดือนก่อน
video shows add gradient progress bar in iOS swift. use the CAGradientLayer in code for gradient progress bar. watch full video for more details. For more video like, comment and subscribe my channel.
Text to speech in iOS swift | AVSpeechSynthesizer
มุมมอง 2837 หลายเดือนก่อน
Text-to-speech in an iOS app using Swift, you can use the AVSpeechSynthesizer class from the AVFoundation framework. Demo contains step by step guides. For more videos like, comment and subscribe my channel.
Half circular progress bar with gradient color in iOS Swift
มุมมอง 3428 หลายเดือนก่อน
Video contains the swiftUI code for half circular progress bar with gradient fill color. in this demo we set the circular progress with our needs. For half circle progress we need to set the progress start and end point according to this we set the circle. Watch full video for more details. if anyone need source code then comment in comment box. for more video like, comment and subscribe my cha...
Adding Swipe Actions to UITableViewCells | Swift 5, XCode 15
มุมมอง 918 หลายเดือนก่อน
Add a swipe action in tableview cell. watch a full video for live demo. This video teach how to implement swipe to delete on a UITableView. For more video like, comment and subscribe my channel. #swift #tableview #swipe
Coin collecting animation in iOS swift within 2 minute.
มุมมอง 1819 หลายเดือนก่อน
Coin collecting animation in iOS swift within 2 minute.
How to Use Scroll Views in iOS in 2 Minutes or Less?
มุมมอง 539 หลายเดือนก่อน
How to Use Scroll Views in iOS in 2 Minutes or Less?
How to set Lottie animation in iOS swift within 2 minute?
มุมมอง 1709 หลายเดือนก่อน
How to set Lottie animation in iOS swift within 2 minute?
How to set animated loader in iOS swift?
มุมมอง 1679 หลายเดือนก่อน
How to set animated loader in iOS swift?
How to set gradient border animation in iOS swift?
มุมมอง 6039 หลายเดือนก่อน
How to set gradient border animation in iOS swift?
How to set animation when tap button in Swift?
มุมมอง 1609 หลายเดือนก่อน
How to set animation when tap button in Swift?
How to play system sounds in iOS app just #1 line of code?
มุมมอง 1799 หลายเดือนก่อน
How to play system sounds in iOS app just #1 line of code?
How to add toast message in iOS Swift with few line of code?
มุมมอง 36710 หลายเดือนก่อน
How to add toast message in iOS Swift with few line of code?
How to change selected row text colour in UIPickerview in swift?
มุมมอง 25911 หลายเดือนก่อน
How to change selected row text colour in UIPickerview in swift?
How to change background colour of selected row indicator in uipickerview in iOS swift?
มุมมอง 37311 หลายเดือนก่อน
How to change background colour of selected row indicator in uipickerview in iOS swift?
How to get selected data from pickerview in iOS?
มุมมอง 5111 หลายเดือนก่อน
How to get selected data from pickerview in iOS?
How to Integrate picker in iOS Swift with live demo?
มุมมอง 5111 หลายเดือนก่อน
How to Integrate picker in iOS Swift with live demo?
How to pass data in one controller to another in iOS swift?
มุมมอง 6811 หลายเดือนก่อน
How to pass data in one controller to another in iOS swift?
How to navigate one screen to another in iOS swift?
มุมมอง 40111 หลายเดือนก่อน
How to navigate one screen to another in iOS swift?
How to Create a Horizontal Scroll View in Xcode?
มุมมอง 26011 หลายเดือนก่อน
How to Create a Horizontal Scroll View in Xcode?
That´s the video i needed, thanks!
please share HealthkitModel.swift class\
Give us your email we will share in this
Any sample code ?
Yes. Give us your email id we will share code in this
Hello please share code
Give us your email id we will share code in this
Hello ... May I have the source code?
Give us your email id I will provide source code in this
hello Please share Model class
Give me your email id we will share model class in this
Hello Sir... Can you please provide me source code?
Give us your email id we will share the code
can you please share all the codes?
Give us your email id we will share code
is it possible to implement this for SwiftUI, also could you please send me the source code? thank you
Kindly provide your email id we will share the code in your email.
Thanks, bro, I wouldn't have thought about it!
Hey, I want to create same for my project. But change is, there should be a small part of border to be white and it will appear as one of border chasing the other end and the white part will be in middle of them. All this with the gradients you showed above. Can you please help me over this?
You can set the gradient color whatever you want.
@@SoftwareDevelopment13 My requirement is different not just color change
Can you explain your issue in brief? our software development team will help you.
can you please share BorderGradient Color add Code..
Here is the setup border function private func setupGradientLayer() { // Create gradient layer for the border gradientLayer = CAGradientLayer() gradientLayer.frame = bounds gradientLayer.colors = [UIColor.red.cgColor, UIColor.green.cgColor] // Change colors as per your requirement gradientLayer.startPoint = CGPoint(x: 0, y: 0) gradientLayer.endPoint = CGPoint(x: 1, y: 1) gradientLayer.cornerRadius = 16 // Create the mask layer to clip the gradient to the border let maskLayer = CAShapeLayer() maskLayer.path = UIBezierPath(roundedRect: bounds, cornerRadius: layer.cornerRadius).cgPath maskLayer.fillColor = UIColor.clear.cgColor maskLayer.strokeColor = UIColor.white.cgColor maskLayer.lineWidth = borderWidth // Apply the mask to the gradient layer gradientLayer.mask = maskLayer // Add gradient layer to the view's layer layer.addSublayer(gradientLayer) } If you want full example demo then give me your email id I will share you full code.
Hello sir, May I have the source code? 🙏
Sure, give me your email we will sent you
need HealthkitModel.swift file.
Give me your email we will provide you in email.
Just what i was looking for!! amazing!! when you delete the cell, How do you make it disappear with animation?
For the swipe action you use the UIContextualAction in this animation is default. Here are example Following code you need to write in UITableView delegate method. Delegate method name: trailingSwipeActionsConfigurationForRowAt let action = UIContextualAction(style: .destructive, title: nil) { (action, view, completion) in print("Delete action") completion(true) // Handle completion after performing action } action.backgroundColor = ColorManager.primaryColor action.image = UIImage(named: ImageManager.icon_delete) // Create swipe actions configuration let swipeConfig = UISwipeActionsConfiguration(actions: [action]) swipeConfig.performsFirstActionWithFullSwipe = false return swipeConfig
@@SoftwareDevelopment13 Thanks you!!!
thanks, love!!
can u share source code or GitHub link?
Yes sure give me your email ID I will email you source code file.
tk
Thankss!
Good to hear you. If you face any other issues then comment we will provide a solution. for more videos subscribe my channel
thanks
Good to hear you. If you face any other issues then comment we will provide a solution. for more videos subscribe my channel
tx solved my prblm
Good to hear you. If you face any other issues then comment we will provide a solution. for more videos subscribe my channel
"promo sm" 👍
For more software development videos subscribe my channel.