Software Development
Software Development
  • 66
  • 12 614
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()
}
}
มุมมอง: 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
Speech Recognition in iOS Swift app.
มุมมอง 1669 หลายเดือนก่อน
Speech Recognition in iOS Swift app.
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?

ความคิดเห็น

  • @pcarreterog2802
    @pcarreterog2802 หลายเดือนก่อน

    That´s the video i needed, thanks!

  • @praveenkumar-gp5cb
    @praveenkumar-gp5cb หลายเดือนก่อน

    please share HealthkitModel.swift class\

  • @duwt8691
    @duwt8691 หลายเดือนก่อน

    Any sample code ?

    • @SoftwareDevelopment13
      @SoftwareDevelopment13 หลายเดือนก่อน

      Yes. Give us your email id we will share code in this

  • @pritampatel4434
    @pritampatel4434 2 หลายเดือนก่อน

    Hello please share code

    • @SoftwareDevelopment13
      @SoftwareDevelopment13 หลายเดือนก่อน

      Give us your email id we will share code in this

  • @kadirecer3869
    @kadirecer3869 2 หลายเดือนก่อน

    Hello ... May I have the source code?

    • @SoftwareDevelopment13
      @SoftwareDevelopment13 2 หลายเดือนก่อน

      Give us your email id I will provide source code in this

  • @sarthaktamrakar2869
    @sarthaktamrakar2869 2 หลายเดือนก่อน

    hello Please share Model class

    • @SoftwareDevelopment13
      @SoftwareDevelopment13 2 หลายเดือนก่อน

      Give me your email id we will share model class in this

  • @shwetasingh3600
    @shwetasingh3600 2 หลายเดือนก่อน

    Hello Sir... Can you please provide me source code?

    • @SoftwareDevelopment13
      @SoftwareDevelopment13 2 หลายเดือนก่อน

      Give us your email id we will share the code

  • @mevlutsonmez5472
    @mevlutsonmez5472 3 หลายเดือนก่อน

    can you please share all the codes?

  • @YoronDaDude
    @YoronDaDude 4 หลายเดือนก่อน

    is it possible to implement this for SwiftUI, also could you please send me the source code? thank you

    • @SoftwareDevelopment13
      @SoftwareDevelopment13 4 หลายเดือนก่อน

      Kindly provide your email id we will share the code in your email.

  • @dmitryandco.528
    @dmitryandco.528 6 หลายเดือนก่อน

    Thanks, bro, I wouldn't have thought about it!

  • @ajaysarkate6624
    @ajaysarkate6624 6 หลายเดือนก่อน

    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?

    • @SoftwareDevelopment13
      @SoftwareDevelopment13 6 หลายเดือนก่อน

      You can set the gradient color whatever you want.

    • @ajaysarkate6624
      @ajaysarkate6624 6 หลายเดือนก่อน

      @@SoftwareDevelopment13 My requirement is different not just color change

    • @SoftwareDevelopment13
      @SoftwareDevelopment13 6 หลายเดือนก่อน

      Can you explain your issue in brief? our software development team will help you.

  • @Avni-pd1vy
    @Avni-pd1vy 7 หลายเดือนก่อน

    can you please share BorderGradient Color add Code..

    • @SoftwareDevelopment13
      @SoftwareDevelopment13 7 หลายเดือนก่อน

      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.

  • @lengnarin6770
    @lengnarin6770 7 หลายเดือนก่อน

    Hello sir, May I have the source code? 🙏

  • @KupendiranAlagarsamy
    @KupendiranAlagarsamy 8 หลายเดือนก่อน

    need HealthkitModel.swift file.

    • @SoftwareDevelopment13
      @SoftwareDevelopment13 8 หลายเดือนก่อน

      Give me your email we will provide you in email.

  • @titochicoma4299
    @titochicoma4299 8 หลายเดือนก่อน

    Just what i was looking for!! amazing!! when you delete the cell, How do you make it disappear with animation?

    • @SoftwareDevelopment13
      @SoftwareDevelopment13 8 หลายเดือนก่อน

      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

    • @titochicoma4299
      @titochicoma4299 8 หลายเดือนก่อน

      @@SoftwareDevelopment13 Thanks you!!!

  • @vanyaluk
    @vanyaluk 9 หลายเดือนก่อน

    thanks, love!!

  • @sai2989
    @sai2989 9 หลายเดือนก่อน

    can u share source code or GitHub link?

    • @SoftwareDevelopment13
      @SoftwareDevelopment13 8 หลายเดือนก่อน

      Yes sure give me your email ID I will email you source code file.

  • @sanyeliu3156
    @sanyeliu3156 9 หลายเดือนก่อน

    tk

  • @tatanmoran
    @tatanmoran 10 หลายเดือนก่อน

    Thankss!

    • @SoftwareDevelopment13
      @SoftwareDevelopment13 8 หลายเดือนก่อน

      Good to hear you. If you face any other issues then comment we will provide a solution. for more videos subscribe my channel

  • @murattunca4250
    @murattunca4250 11 หลายเดือนก่อน

    thanks

    • @SoftwareDevelopment13
      @SoftwareDevelopment13 8 หลายเดือนก่อน

      Good to hear you. If you face any other issues then comment we will provide a solution. for more videos subscribe my channel

  • @sirTangale
    @sirTangale 11 หลายเดือนก่อน

    tx solved my prblm

    • @SoftwareDevelopment13
      @SoftwareDevelopment13 11 หลายเดือนก่อน

      Good to hear you. If you face any other issues then comment we will provide a solution. for more videos subscribe my channel

  • @westdanczak1993
    @westdanczak1993 ปีที่แล้ว

    "promo sm" 👍

    • @SoftwareDevelopment13
      @SoftwareDevelopment13 11 หลายเดือนก่อน

      For more software development videos subscribe my channel.