Giter VIP home page Giter VIP logo

Comments (5)

fruitcoder avatar fruitcoder commented on June 22, 2024

Thank you for your feedback! As mentioned in the Note here there can be flickering on the simulator. Can you confirm the bug in a release build on the device?

from play-button.

i-tengfei avatar i-tengfei commented on June 22, 2024

After the test, the flickering is more serious on the device.

RPReplay_Final1651694633.MP4

iPhone 12
iOS 15.4

from play-button.

fruitcoder avatar fruitcoder commented on June 22, 2024

Do you see the same glitch in the sample code on the device? If not, can you provide a minimal project showing the bug?

from play-button.

i-tengfei avatar i-tengfei commented on June 22, 2024

Yes it has the same problem in the sample code.

RPReplay_Final1652051717.mov

And it's easy to reproduce.

import UIKit
import PlayButton

class ViewController: UIViewController {
  lazy var playButton: PlayButton = {
    let playButton = PlayButton()
    playButton.addAction(.init(handler: { [weak self] _ in
      guard let self = self else { return }
      if (playButton.isPlay) {
        playButton.setMode(.pause, animated: true)
      } else {
        playButton.setMode(.play, animated: true)
      }
    }), for: .touchUpInside)
    return playButton
  }()

  override func viewDidLoad() {
    super.viewDidLoad()
    
    view.addSubview(playButton)
    playButton.translatesAutoresizingMaskIntoConstraints = false
    playButton.centerYAnchor.constraint(equalTo: view.centerYAnchor).isActive = true
  }
}


from play-button.

fruitcoder avatar fruitcoder commented on June 22, 2024

Hi @i-tengfei! Could you test if the latest release fixes the issue?

from play-button.

Related Issues (1)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.