erluxman / awesomefluttertips

❤️ Awesome Flutter Tips and Tricks ❤️

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Images inside examples are too big

Tamir198 opened this issue · comments

Generally - when you are using an image (or GIF) you can control the size of the image so it won't be too big (as for the moment its kind of too big).

Example:

  • <img src="your image link" height="450">
    
  • <img src="your image link" width="450">
    

You can also use both height and width together

  • <img src="your image link" height="450" width="450">
    

Update - I have opened Pull request as an example of how to resize the images

This is really cool project, if you want to I can create more pull requests for you to save you some time and make the images a bit smaller.

Update - I have created one pull request for every page that I have made some change.

This way, if I made some mistake in one of the pages accidentally it won't affect the rest of them.

@erluxman