Skip to main content

Helper Sites to build your Mobile App

Helper Sites to build your Mobile App (Primary Stuff)


Idea to App 


Following are the links , supporting your journey in transforming an idea into an app 




  1. Wireframes

  2. Have the screens you want your app to a have drawn on paper. Then have the photos of each screen clicked individually , Then use POP https://marvelapp.com/pop/ . This app helps you have your wireframes connected, just like an mock app. 



  1. Color Theme

  2. To decide on the color for your apps use 

  3. https://colorhunt.co/ 

  4. https://www.materialpalette.com/



  1. Visual Design

  2. To refer already existing designs use https://pttrns.com/ ,

  3. To design VD use https://www.uxpin.com/ 





  1. App Icons 

  2. To create app icons use https://makeappicon.com/ 





  1. App Landing Page 

  2. To create landing page for your app use, Just place your itunes or place store. 

  3. https://app-stop.appspot.com/ 

  4. http://ticons.fokkezb.nl/ 

  5. http://ios.hvims.com/ 




Thanks for reading !!!

Comments

Popular posts from this blog

How to create your cocoapods?

Lets write our cocoapod and publish it to cocoapods.org    iOS Developer level :  Intermediate   Configuration when this article was written   Xcode :  Version 11.5 MacOS :  10.15.5 (Catalina)   A working example   Final code can be found in the Resources section below.     What is a cocoapod ?         CocoaPods  is an  application level dependency manager  for the  Objective-C ,  Swift  and any other languages that run on the Objective-C runtime, such as  RubyMotion , that provides a standard format for managing external  libraries.            CocoaPods focuses on source-based distribution of third party code and automatic integration into Xcode projects. Enough of introduction , let’s be technical… So to start let us create a framework using xcode.   Xcode -> New -> Project -> F...

Creating Swift Packages

Lets create our first  Swift Package !  iOS Developer level : Intermediate   Configuration when this article was written   Xcode : Version 11.5 MacOS : 10.15.5 (Catalina)   A working example Final code can be found in the Resources section below.   What are Swift Packages ?   Swift packages are reusable components of Swift, Objective-C, Objective-C++, C, or C++ code that developers can use in their projects. They bundle source files, binaries, and resources in a way that’s easy to use in your app’s project. Enough of introduction , let’s be technical… From Xcode 11, we can directly create Swift Package. To ensure our package is rightly developed we will follow the steps mentioned below. Step 1 : We create a single view application , we will have a service (which we later export as swift package) developed here Step 2 : Create Swift Package with the same  single view application just developed, Move our service devel...