├── .gitattributes ├── .github ├── FUNDING.yml ├── pull_request_template.md └── stream-animation.gif ├── README.md ├── assets └── images │ └── stream-logo.png ├── contributing.md └── source.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solido/awesome-flutter/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [solido] 2 | -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solido/awesome-flutter/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/stream-animation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solido/awesome-flutter/HEAD/.github/stream-animation.gif -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solido/awesome-flutter/HEAD/README.md -------------------------------------------------------------------------------- /assets/images/stream-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solido/awesome-flutter/HEAD/assets/images/stream-logo.png -------------------------------------------------------------------------------- /contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solido/awesome-flutter/HEAD/contributing.md -------------------------------------------------------------------------------- /source.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solido/awesome-flutter/HEAD/source.md --------------------------------------------------------------------------------