Skip to content

Latest commit

 

History

History
52 lines (38 loc) · 1.43 KB

Guide-to-choose-app-social-networks.md

File metadata and controls

52 lines (38 loc) · 1.43 KB

How to choose the app social networks

  • Go to app/config.js

01

02

  • Remove the social networks that your app doesn't use

03

04

  • Add the social network that your app needs

    • Go to Social Icon

    • Search the icon social network 05

    • Put a json with this fields:

  {
    link2App: '<link-to-open-app-social-network>'
    link2Page: '<link-to-open-page-social-network>'
    iconId: '#\u<icon-id>'
    iconColor: '#<rgb-code-icon-color>'
    background: '#<rgb-code-background-color>'
  }

06

07

  • Or use a background image
    • Put a background image 08

    • Use the field 'backgroundImage':

  {
    link2App: '<link-to-open-app-social-network>'
    link2Page: '<link-to-open-page-social-network>'
    iconId: '#\u<icon-id>'
    iconColor: '#<rgb-code-icon-color>'
    backgroundImage: '~/<path-to-image-from-"app/">'
  }

09

10