No commit activity in last 3 years
No release in over 3 years
A simple RubyMotion wrapper for iOS's Dynamic Type to make it easier to set the fonts, as well as getting the information you need and notifications for responding to the layout changes
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

 Project Readme

MotionDynamicType (MDT)

Gem Version Build Status Code Climate

A simple RubyMotion wrapper for iOS's Dynamic Type to make it easier to set the fonts, as well as getting the information you need and notifications for responding to the layout changes.

Help support this gem by learning

The only reason I can keep making gems and keep them up to date is because lovely people like yourself support me. I create the Motion in Motion subscription series which you can purchase monthly or by the year, I also have an entire school for Mobile (RubyMotion) development. All support, even small amounts really helps.

Installation

Add this line to your application's Gemfile:

gem 'motion-dynamic-type'

And then execute:

$ bundle

Or install it yourself as:

$ gem install motion-dynamic-type

Usage

Anything on RubyGems should be stable and fine to use, as this is early days though, the API is prone to change.

This is the available functionality so far. Eventually this will be a helpful tool for heavily simplifying all the things required for integrating Dynamic Type into your app, including responding to the size changing and working out sizing.

MDT::Font

These methods get a font matching up the the text style. They're just a very simple wrapper around UIFont.preferredFontForTextStyle, check out the source code.

MDT::Font.large_title
MDT::Font.title_one
MDT::Font.title_two
MDT::Font.title_three
MDT::Font.headline
MDT::Font.subhead
MDT::Font.body
MDT::Font.caption_one
MDT::Font.caption_two
MDT::Font.footnote

Contributing

  1. Fork it ( http://github.com/wndxlori/motion-dynamic-type/fork )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Test your changes (rake spec)
  5. Push to the branch (git push origin my-new-feature)
  6. Create new Pull Request