ProMotion Formotion Screen
Made a gem from the ProMotion formotion example at https://github.com/clearsightstudio/ProMotion#using-your-own-uiviewcontroller
Add this gem to your project, in Gemfile gem 'ProMotion-formotion'
:
gem "rake"
gem 'ProMotion', :git => 'https://github.com/clearsightstudio/ProMotion.git'
gem 'formotion', :git => 'https://github.com/clayallsopp/formotion.git'
gem 'ProMotion-formotion'
then bundle update
.
Important: At the moment you need to use the git versions of the ProMotion and formotion Gems for a working App.
Please add app.detect_dependencies = false
to your Rakefile in Motion::Project::App.setup as we use motion-require.
Create a Formotion Screen with:
class LoginScreen < PM::FormotionScreen
title "Login"
def on_submit(_form)
end
def table_data
{
sections: [{
title: "Credentials",
rows: [{
title: "Email",
key: :email,
placeholder: "example@kohactive.com",
type: :string,
auto_correction: :no,
auto_capitalization: :none
},
{
title: "Password",
key: :password,
placeholder: "",
type: :string,
auto_correction: :no,
auto_capitalization: :none
},
]
}]
}
end
end