More PWA notes

Resources on learning about PWAs

Tutorials:

Anatomy of a Manifest File

{
"name": "Color Picker",
"short_name": "ColorPicker",
"start_url": "/index.html",
"display": "standalone",
"background_color": "#7bdcb5",
"theme-color": "#7bdcb5",
"orientation": "portrait-primary",
"icons": [
{
}
] 
}
  • start url sets the page that loads when you click the icon
  • display can be set to standalone or browser
  • bg color background of the splash screen


Leave a Reply

Your email address will not be published. Required fields are marked *