Home > Blockchain >  Published my first Flutter package- gif are not showing up in my read me file
Published my first Flutter package- gif are not showing up in my read me file

Time:12-12

Its showing on my github but not showing on pub.dev why?

github link https://github.com/erayhamurlu/onboarding_plus

pub.dev link https://pub.dev/packages/onboarding_plus

i hope someone show me i think it is a generic problem.

CodePudding user response:

You need to change the image path, change this:

https://github.com/erayhamurlu/onboarding_plus/blob/main/screenshot1.png

to

https://github.com/erayhamurlu/onboarding_plus/raw/main/screenshot1.png

you need to replace blob to raw in your path. Do this for all three pictures.

  • Related