clearsightstudio/ProMotion

View on GitHub
app/screens/test_delegate_colors.rb

Summary

Maintainability
A
0 mins
Test Coverage
class TestDelegateColored < TestDelegate
  status_bar false

  def on_load(app, options)
    open BasicScreen.new(nav_bar: true)
  end
end

class TestDelegateRed < TestDelegateColored
  tint_color UIColor.redColor
end

# Other colors

# class TestDelegateBlack < TestDelegateColored
#   tint_color UIColor.blackColor
# end