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

Access Control by using Access Specifiers

Access Control by using Access Specifiers  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.   Access control  restricts access to parts (like functions, class, structure, variables …. etc ) of your code from code in other source files and modules.   So lets understand what do we mean by Modules and Source Files  before we head forward   Modules and Source Files   A  module  is a single unit of code distribution—a framework or application that is built and shipped as a single unit and that can be imported by another module with Swift’s  import  keyword. In the example below (which I will coverup shortly) SharedFunctionality is a Module   A  source file  is a single Swift source code file within a module (in effe...

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...