├── .gitignore ├── docs ├── assets │ ├── scss │ │ ├── custom │ │ │ ├── _accordion.scss │ │ │ ├── _carousel.scss │ │ │ ├── _grid.scss │ │ │ ├── _functions.scss │ │ │ ├── _close.scss │ │ │ ├── _avatars.scss │ │ │ ├── _badge.scss │ │ │ └── _icons.scss │ │ └── bootstrap │ │ │ ├── utilities │ │ │ ├── _clearfix.scss │ │ │ ├── _screenreaders.scss │ │ │ ├── _visibility.scss │ │ │ ├── _shadows.scss │ │ │ ├── _sizing.scss │ │ │ ├── _float.scss │ │ │ ├── _align.scss │ │ │ ├── _background.scss │ │ │ ├── _position.scss │ │ │ ├── _embed.scss │ │ │ ├── _display.scss │ │ │ └── _spacing.scss │ │ │ ├── _media.scss │ │ │ ├── mixins │ │ │ ├── _box-shadow.scss │ │ │ ├── _size.scss │ │ │ ├── _clearfix.scss │ │ │ ├── _visibility.scss │ │ │ ├── _lists.scss │ │ │ ├── _text-truncate.scss │ │ │ ├── _resize.scss │ │ │ ├── _float.scss │ │ │ ├── _badge.scss │ │ │ ├── _alert.scss │ │ │ ├── _nav-divider.scss │ │ │ ├── _text-emphasis.scss │ │ │ ├── _transition.scss │ │ │ ├── _text-hide.scss │ │ │ ├── _list-group.scss │ │ │ ├── _pagination.scss │ │ │ ├── _background-variant.scss │ │ │ ├── _reset-text.scss │ │ │ ├── _table-row.scss │ │ │ ├── _border-radius.scss │ │ │ ├── _screen-reader.scss │ │ │ ├── _hover.scss │ │ │ └── _image.scss │ │ │ ├── _transitions.scss │ │ │ ├── _jumbotron.scss │ │ │ ├── _utilities.scss │ │ │ ├── _root.scss │ │ │ ├── _progress.scss │ │ │ ├── _close.scss │ │ │ ├── _mixins.scss │ │ │ ├── _code.scss │ │ │ ├── _badge.scss │ │ │ ├── _grid.scss │ │ │ ├── _images.scss │ │ │ ├── _alert.scss │ │ │ └── _breadcrumb.scss │ ├── img │ │ ├── brand │ │ │ └── white.png │ │ └── theme │ │ │ ├── karx.jpeg │ │ │ └── iamsarthakverma.png │ ├── vendor │ │ ├── nucleo │ │ │ └── fonts │ │ │ │ ├── nucleo-icons.eot │ │ │ │ ├── nucleo-icons.ttf │ │ │ │ ├── nucleo-icons.woff │ │ │ │ └── nucleo-icons.woff2 │ │ ├── font-awesome │ │ │ ├── fonts │ │ │ │ ├── FontAwesome.otf │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ └── fontawesome-webfont.woff2 │ │ │ ├── less │ │ │ │ ├── screen-reader.less │ │ │ │ ├── fixed-width.less │ │ │ │ ├── larger.less │ │ │ │ ├── list.less │ │ │ │ ├── core.less │ │ │ │ ├── stacked.less │ │ │ │ ├── font-awesome.less │ │ │ │ ├── bordered-pulled.less │ │ │ │ ├── rotated-flipped.less │ │ │ │ ├── path.less │ │ │ │ └── animated.less │ │ │ ├── scss │ │ │ │ ├── _fixed-width.scss │ │ │ │ ├── _screen-reader.scss │ │ │ │ ├── _larger.scss │ │ │ │ ├── _list.scss │ │ │ │ ├── _core.scss │ │ │ │ ├── font-awesome.scss │ │ │ │ ├── _stacked.scss │ │ │ │ ├── _bordered-pulled.scss │ │ │ │ ├── _rotated-flipped.scss │ │ │ │ ├── _path.scss │ │ │ │ └── _animated.scss │ │ │ └── HELP-US-OUT.txt │ │ └── bootstrap-datepicker │ │ │ └── locales │ │ │ ├── bootstrap-datepicker.ja.min.js │ │ │ ├── bootstrap-datepicker.zh-TW.min.js │ │ │ ├── bootstrap-datepicker.ko.min.js │ │ │ ├── bootstrap-datepicker.he.min.js │ │ │ ├── bootstrap-datepicker.zh-CN.min.js │ │ │ ├── bootstrap-datepicker.bg.min.js │ │ │ ├── bootstrap-datepicker.cy.min.js │ │ │ ├── bootstrap-datepicker.sw.min.js │ │ │ ├── bootstrap-datepicker.sq.min.js │ │ │ ├── bootstrap-datepicker.ms.min.js │ │ │ ├── bootstrap-datepicker.hr.min.js │ │ │ ├── bootstrap-datepicker.id.min.js │ │ │ ├── bootstrap-datepicker.kk.min.js │ │ │ ├── bootstrap-datepicker.sl.min.js │ │ │ ├── bootstrap-datepicker.az.min.js │ │ │ ├── bootstrap-datepicker.kr.min.js │ │ │ ├── bootstrap-datepicker.is.min.js │ │ │ ├── bootstrap-datepicker.mk.min.js │ │ │ ├── bootstrap-datepicker.mn.min.js │ │ │ ├── bootstrap-datepicker.sr.min.js │ │ │ ├── bootstrap-datepicker.th.min.js │ │ │ ├── bootstrap-datepicker.bs.min.js │ │ │ ├── bootstrap-datepicker.fo.min.js │ │ │ ├── bootstrap-datepicker.tr.min.js │ │ │ ├── bootstrap-datepicker.fa.min.js │ │ │ ├── bootstrap-datepicker.gl.min.js │ │ │ ├── bootstrap-datepicker.sk.min.js │ │ │ ├── bootstrap-datepicker.sr-latin.min.js │ │ │ ├── bootstrap-datepicker.sv.min.js │ │ │ ├── bootstrap-datepicker.ar-tn.min.js │ │ │ ├── bootstrap-datepicker.ar.min.js │ │ │ ├── bootstrap-datepicker.km.min.js │ │ │ ├── bootstrap-datepicker.me.min.js │ │ │ ├── bootstrap-datepicker.pt.min.js │ │ │ ├── bootstrap-datepicker.cs.min.js │ │ │ ├── bootstrap-datepicker.ro.min.js │ │ │ ├── bootstrap-datepicker.tk.min.js │ │ │ ├── bootstrap-datepicker.it-CH.min.js │ │ │ ├── bootstrap-datepicker.pt-BR.min.js │ │ │ ├── bootstrap-datepicker.tg.min.js │ │ │ ├── bootstrap-datepicker.uk.min.js │ │ │ ├── bootstrap-datepicker.vi.min.js │ │ │ ├── bootstrap-datepicker.br.min.js │ │ │ ├── bootstrap-datepicker.da.min.js │ │ │ ├── bootstrap-datepicker.eo.min.js │ │ │ ├── bootstrap-datepicker.es.min.js │ │ │ ├── bootstrap-datepicker.fr-CH.min.js │ │ │ ├── bootstrap-datepicker.no.min.js │ │ │ ├── bootstrap-datepicker.oc.min.js │ │ │ ├── bootstrap-datepicker.ca.min.js │ │ │ ├── bootstrap-datepicker.de.min.js │ │ │ ├── bootstrap-datepicker.ka.min.js │ │ │ ├── bootstrap-datepicker.lv.min.js │ │ │ ├── bootstrap-datepicker.nl.min.js │ │ │ ├── bootstrap-datepicker.ta.min.js │ │ │ ├── bootstrap-datepicker.uz-cyrl.min.js │ │ │ ├── bootstrap-datepicker.en-AU.min.js │ │ │ ├── bootstrap-datepicker.en-NZ.min.js │ │ │ ├── bootstrap-datepicker.en-ZA.min.js │ │ │ ├── bootstrap-datepicker.hi.min.js │ │ │ ├── bootstrap-datepicker.hu.min.js │ │ │ ├── bootstrap-datepicker.it.min.js │ │ │ ├── bootstrap-datepicker.ru.min.js │ │ │ ├── bootstrap-datepicker.el.min.js │ │ │ ├── bootstrap-datepicker.en-CA.min.js │ │ │ ├── bootstrap-datepicker.en-GB.min.js │ │ │ ├── bootstrap-datepicker.en-IE.min.js │ │ │ ├── bootstrap-datepicker.et.min.js │ │ │ ├── bootstrap-datepicker.fi.min.js │ │ │ ├── bootstrap-datepicker.nl-BE.min.js │ │ │ ├── bootstrap-datepicker.uz-latn.min.js │ │ │ ├── bootstrap-datepicker.eu.min.js │ │ │ ├── bootstrap-datepicker.fr.min.js │ │ │ ├── bootstrap-datepicker.hy.min.js │ │ │ ├── bootstrap-datepicker.si.min.js │ │ │ ├── bootstrap-datepicker.pl.min.js │ │ │ ├── bootstrap-datepicker.lt.min.js │ │ │ ├── bootstrap-datepicker.bn.min.js │ │ │ ├── bootstrap-datepicker.kh.min.js │ │ │ ├── bootstrap-datepicker.rs.min.js │ │ │ ├── bootstrap-datepicker-en-CA.min.js │ │ │ └── bootstrap-datepicker.rs-latin.min.js │ ├── js │ │ ├── kaaro.js │ │ └── bricklayerCards.js │ └── css │ │ └── bricklayer.min.css ├── .github │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE │ │ ├── documentation.md │ │ ├── bug_report.md │ │ ├── support.md │ │ └── feature_request.md │ ├── PULL_REQUEST_TEMPLATE.md │ ├── stale.yml │ └── CONTRIBUTING.md ├── _sass │ ├── minimal-mistakes │ │ ├── vendor │ │ │ ├── susy │ │ │ │ ├── _su.scss │ │ │ │ ├── _susy.scss │ │ │ │ ├── plugins │ │ │ │ │ ├── _svg-grid.scss │ │ │ │ │ └── svg-grid │ │ │ │ │ │ ├── _prefix.scss │ │ │ │ │ │ ├── _svg-unprefix.scss │ │ │ │ │ │ └── _svg-settings.scss │ │ │ │ ├── _susy-prefix.scss │ │ │ │ └── susy │ │ │ │ │ └── _unprefix.scss │ │ │ └── breakpoint │ │ │ │ ├── _no-query.scss │ │ │ │ └── parsers │ │ │ │ ├── single │ │ │ │ └── _default.scss │ │ │ │ ├── double │ │ │ │ ├── _default.scss │ │ │ │ ├── _double-string.scss │ │ │ │ └── _default-pair.scss │ │ │ │ ├── triple │ │ │ │ └── _default.scss │ │ │ │ ├── _single.scss │ │ │ │ ├── _triple.scss │ │ │ │ ├── _resolution.scss │ │ │ │ └── _double.scss │ │ ├── skins │ │ │ ├── _default.scss │ │ │ ├── _mint.scss │ │ │ ├── _air.scss │ │ │ ├── _dirt.scss │ │ │ ├── _dark.scss │ │ │ ├── _aqua.scss │ │ │ └── _contrast.scss │ │ ├── _animations.scss │ │ └── _tables.scss │ └── minimal-mistakes.scss ├── favicon.ico ├── screenshot.png ├── _includes │ ├── footer │ │ └── custom.html │ ├── analytics-providers │ │ ├── custom.html │ │ ├── google-universal.html │ │ ├── google-gtag.html │ │ └── google.html │ ├── comments-providers │ │ ├── custom.html │ │ ├── facebook.html │ │ ├── scripts.html │ │ ├── utterances.html │ │ ├── disqus.html │ │ └── discourse.html │ ├── posts-tag.html │ ├── posts-category.html │ ├── head │ │ └── custom.html │ ├── page__hero_video.html │ ├── page__taxonomy.html │ ├── browser-upgrade.html │ ├── author-profile-custom-links.html │ ├── toc │ ├── figure │ ├── search │ │ ├── lunr-search-scripts.html │ │ ├── google-search-scripts.html │ │ └── search_form.html │ ├── analytics.html │ ├── collecttags.html │ ├── skip-links.html │ ├── documents-collection.html │ ├── read-time.html │ ├── video │ ├── post_pagination.html │ ├── sidebar.html │ ├── comment.html │ ├── tag-list.html │ ├── group-by-array │ ├── category-list.html │ ├── social-share.html │ ├── archive-single.html │ ├── gallery │ └── scripts.html ├── screenshot-layouts.png ├── _pages │ ├── tags.md │ ├── events.md │ ├── about.md │ ├── top-projects.md │ ├── contribute.md │ ├── top-contributors.md │ └── home.md ├── Gemfile ├── _layouts │ ├── category.html │ ├── projects.html │ ├── tag.html │ ├── collection.html │ ├── home.html │ ├── archive-taxonomy.html │ ├── archive.html │ ├── posts.html │ ├── splash.html │ ├── default.html │ ├── tags.html │ ├── categories.html │ └── search.html ├── .gitignore ├── .gitattributes ├── .editorconfig ├── _events │ ├── fa_git_Request-Awesome-Flutter-Event.md │ └── flutter-bootcap-vadodara.md ├── index.html ├── .travis.yml ├── _data │ └── navigation.yml ├── banner.js ├── LICENSE ├── flutterArsenal.gemspec ├── package.json └── _projects │ ├── fa_git_dapackages.md │ ├── fa_git_flutter_challenges.md │ └── fa_git_awesome_login.md ├── FlutterArsenal.code-workspace ├── .github ├── FUNDING.yml └── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── request-to-add-event-to-flutterarsenal.md │ └── request-to-add-project-to-flutterarsenal.md ├── branding ├── logo-gradient.png ├── logo-only-white.png ├── logo-white-text.png ├── logo-colored-text.png └── flutter-arsenal-facebook-cover.jpg ├── AUTHORS ├── LICENSE.md └── CONTRIBUTING.md /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | fa_venv/ -------------------------------------------------------------------------------- /docs/assets/scss/custom/_accordion.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | custom: https://www.paypal.me/ 2 | -------------------------------------------------------------------------------- /docs/assets/scss/custom/_carousel.scss: -------------------------------------------------------------------------------- 1 | // Bootstrap carousel 2 | -------------------------------------------------------------------------------- /FlutterArsenal.code-workspace: -------------------------------------------------------------------------------- 1 | { 2 | "folders": [ 3 | { 4 | "path": "." 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /docs/_sass/minimal-mistakes/vendor/susy/_su.scss: -------------------------------------------------------------------------------- 1 | // Su 2 | // == 3 | 4 | @import 'susy/su'; 5 | -------------------------------------------------------------------------------- /docs/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutterarsenal/FlutterArsenal/HEAD/docs/favicon.ico -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | patreon: flutterarsenal 4 | -------------------------------------------------------------------------------- /docs/assets/scss/bootstrap/utilities/_clearfix.scss: -------------------------------------------------------------------------------- 1 | .clearfix { 2 | @include clearfix(); 3 | } 4 | -------------------------------------------------------------------------------- /docs/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutterarsenal/FlutterArsenal/HEAD/docs/screenshot.png -------------------------------------------------------------------------------- /branding/logo-gradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutterarsenal/FlutterArsenal/HEAD/branding/logo-gradient.png -------------------------------------------------------------------------------- /docs/_includes/footer/custom.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /branding/logo-only-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutterarsenal/FlutterArsenal/HEAD/branding/logo-only-white.png -------------------------------------------------------------------------------- /branding/logo-white-text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutterarsenal/FlutterArsenal/HEAD/branding/logo-white-text.png -------------------------------------------------------------------------------- /docs/screenshot-layouts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutterarsenal/FlutterArsenal/HEAD/docs/screenshot-layouts.png -------------------------------------------------------------------------------- /branding/logo-colored-text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutterarsenal/FlutterArsenal/HEAD/branding/logo-colored-text.png -------------------------------------------------------------------------------- /docs/assets/img/brand/white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutterarsenal/FlutterArsenal/HEAD/docs/assets/img/brand/white.png -------------------------------------------------------------------------------- /docs/assets/img/theme/karx.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutterarsenal/FlutterArsenal/HEAD/docs/assets/img/theme/karx.jpeg -------------------------------------------------------------------------------- /docs/assets/scss/custom/_grid.scss: -------------------------------------------------------------------------------- 1 | @include media-breakpoint-up(lg) { 2 | .container-lg { 3 | max-width: 1160px; 4 | } 5 | } -------------------------------------------------------------------------------- /docs/_includes/analytics-providers/custom.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /docs/_includes/comments-providers/custom.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /docs/_pages/tags.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Weapons by Tag" 3 | permalink: /tags/ 4 | layout: fa_tags 5 | author_profile: true 6 | --- 7 | -------------------------------------------------------------------------------- /docs/_includes/posts-tag.html: -------------------------------------------------------------------------------- 1 | {%- for post in site.tags[include.taxonomy] -%} 2 | {% include archive-single.html %} 3 | {%- endfor -%} 4 | -------------------------------------------------------------------------------- /docs/assets/img/theme/iamsarthakverma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutterarsenal/FlutterArsenal/HEAD/docs/assets/img/theme/iamsarthakverma.png -------------------------------------------------------------------------------- /branding/flutter-arsenal-facebook-cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutterarsenal/FlutterArsenal/HEAD/branding/flutter-arsenal-facebook-cover.jpg -------------------------------------------------------------------------------- /docs/_includes/posts-category.html: -------------------------------------------------------------------------------- 1 | {%- for post in site.categories[include.taxonomy] -%} 2 | {% include archive-single.html %} 3 | {%- endfor -%} 4 | -------------------------------------------------------------------------------- /docs/_pages/events.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Events" 3 | permalink: /events.html 4 | layout: fa_events 5 | classes: wide 6 | author_profile: true 7 | --- 8 | -------------------------------------------------------------------------------- /docs/assets/scss/bootstrap/_media.scss: -------------------------------------------------------------------------------- 1 | .media { 2 | display: flex; 3 | align-items: flex-start; 4 | } 5 | 6 | .media-body { 7 | flex: 1; 8 | } 9 | -------------------------------------------------------------------------------- /docs/_pages/about.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "About" 3 | excerpt: "About Flutter Arsenal" 4 | permalink: /about.html 5 | toc: false 6 | layout: fa_contact 7 | --- 8 | -------------------------------------------------------------------------------- /docs/assets/scss/bootstrap/mixins/_box-shadow.scss: -------------------------------------------------------------------------------- 1 | @mixin box-shadow($shadow...) { 2 | @if $enable-shadows { 3 | box-shadow: $shadow; 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /docs/_pages/top-projects.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Projects" 3 | permalink: /top-projects/ 4 | layout: top_projects 5 | classes: wide 6 | author_profile: true 7 | --- 8 | -------------------------------------------------------------------------------- /docs/_sass/minimal-mistakes/vendor/susy/_susy.scss: -------------------------------------------------------------------------------- 1 | // Susy (Un-Prefixed) 2 | // ================== 3 | 4 | @import 'susy-prefix'; 5 | @import 'susy/unprefix'; 6 | -------------------------------------------------------------------------------- /docs/assets/vendor/nucleo/fonts/nucleo-icons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutterarsenal/FlutterArsenal/HEAD/docs/assets/vendor/nucleo/fonts/nucleo-icons.eot -------------------------------------------------------------------------------- /docs/assets/vendor/nucleo/fonts/nucleo-icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutterarsenal/FlutterArsenal/HEAD/docs/assets/vendor/nucleo/fonts/nucleo-icons.ttf -------------------------------------------------------------------------------- /docs/assets/vendor/nucleo/fonts/nucleo-icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutterarsenal/FlutterArsenal/HEAD/docs/assets/vendor/nucleo/fonts/nucleo-icons.woff -------------------------------------------------------------------------------- /docs/_pages/contribute.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Contribute" 3 | permalink: /contribute.html 4 | layout: fa_contribute 5 | classes: wide 6 | author_profile: true 7 | --- 8 | -------------------------------------------------------------------------------- /docs/assets/scss/bootstrap/mixins/_size.scss: -------------------------------------------------------------------------------- 1 | // Sizing shortcuts 2 | 3 | @mixin size($width, $height: $width) { 4 | width: $width; 5 | height: $height; 6 | } 7 | -------------------------------------------------------------------------------- /docs/assets/vendor/nucleo/fonts/nucleo-icons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutterarsenal/FlutterArsenal/HEAD/docs/assets/vendor/nucleo/fonts/nucleo-icons.woff2 -------------------------------------------------------------------------------- /docs/assets/scss/bootstrap/mixins/_clearfix.scss: -------------------------------------------------------------------------------- 1 | @mixin clearfix() { 2 | &::after { 3 | display: block; 4 | clear: both; 5 | content: ""; 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /docs/assets/vendor/font-awesome/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutterarsenal/FlutterArsenal/HEAD/docs/assets/vendor/font-awesome/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /docs/Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" do 2 | gem 'liquid_pluralize' 3 | gem 'jekyll-paginate-v2' 4 | gem 'kramdown' 5 | gem 'kramdown-parser-gfm' 6 | end 7 | gemspec -------------------------------------------------------------------------------- /docs/_pages/top-contributors.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Contributors" 3 | permalink: /top-contributors/ 4 | layout: top_contributors 5 | classes: wide 6 | author_profile: true 7 | --- 8 | -------------------------------------------------------------------------------- /docs/_includes/head/custom.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /docs/assets/vendor/font-awesome/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutterarsenal/FlutterArsenal/HEAD/docs/assets/vendor/font-awesome/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /docs/assets/vendor/font-awesome/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutterarsenal/FlutterArsenal/HEAD/docs/assets/vendor/font-awesome/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /docs/_sass/minimal-mistakes/vendor/susy/plugins/_svg-grid.scss: -------------------------------------------------------------------------------- 1 | // SVG Grid Background 2 | // =================== 3 | 4 | @import 'svg-grid/prefix'; 5 | @import 'svg-grid/svg-unprefix'; 6 | -------------------------------------------------------------------------------- /docs/assets/vendor/font-awesome/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutterarsenal/FlutterArsenal/HEAD/docs/assets/vendor/font-awesome/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /docs/assets/vendor/font-awesome/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutterarsenal/FlutterArsenal/HEAD/docs/assets/vendor/font-awesome/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /docs/assets/vendor/font-awesome/less/screen-reader.less: -------------------------------------------------------------------------------- 1 | // Screen Readers 2 | // ------------------------- 3 | 4 | .sr-only { .sr-only(); } 5 | .sr-only-focusable { .sr-only-focusable(); } 6 | -------------------------------------------------------------------------------- /docs/assets/vendor/font-awesome/less/fixed-width.less: -------------------------------------------------------------------------------- 1 | // Fixed Width Icons 2 | // ------------------------- 3 | .@{fa-css-prefix}-fw { 4 | width: (18em / 14); 5 | text-align: center; 6 | } 7 | -------------------------------------------------------------------------------- /docs/assets/vendor/font-awesome/scss/_fixed-width.scss: -------------------------------------------------------------------------------- 1 | // Fixed Width Icons 2 | // ------------------------- 3 | .#{$fa-css-prefix}-fw { 4 | width: (18em / 14); 5 | text-align: center; 6 | } 7 | -------------------------------------------------------------------------------- /docs/assets/scss/bootstrap/mixins/_visibility.scss: -------------------------------------------------------------------------------- 1 | // stylelint-disable declaration-no-important 2 | 3 | // Visibility 4 | 5 | @mixin invisible($visibility) { 6 | visibility: $visibility !important; 7 | } 8 | -------------------------------------------------------------------------------- /docs/assets/vendor/font-awesome/scss/_screen-reader.scss: -------------------------------------------------------------------------------- 1 | // Screen Readers 2 | // ------------------------- 3 | 4 | .sr-only { @include sr-only(); } 5 | .sr-only-focusable { @include sr-only-focusable(); } 6 | -------------------------------------------------------------------------------- /docs/assets/scss/bootstrap/utilities/_screenreaders.scss: -------------------------------------------------------------------------------- 1 | // 2 | // Screenreaders 3 | // 4 | 5 | .sr-only { 6 | @include sr-only(); 7 | } 8 | 9 | .sr-only-focusable { 10 | @include sr-only-focusable(); 11 | } 12 | -------------------------------------------------------------------------------- /docs/assets/scss/bootstrap/utilities/_visibility.scss: -------------------------------------------------------------------------------- 1 | // 2 | // Visibility utilities 3 | // 4 | 5 | .visible { 6 | @include invisible(visible); 7 | } 8 | 9 | .invisible { 10 | @include invisible(hidden); 11 | } 12 | -------------------------------------------------------------------------------- /docs/_sass/minimal-mistakes/vendor/susy/plugins/svg-grid/_prefix.scss: -------------------------------------------------------------------------------- 1 | // Prefixed SVG Plugin 2 | // =================== 3 | 4 | @import 'svg-settings'; 5 | @import 'svg-utilities'; 6 | @import 'svg-grid-math'; 7 | @import 'svg-api'; 8 | -------------------------------------------------------------------------------- /docs/assets/scss/bootstrap/mixins/_lists.scss: -------------------------------------------------------------------------------- 1 | // Lists 2 | 3 | // Unstyled keeps list items block level, just removes default browser padding and list-style 4 | @mixin list-unstyled { 5 | padding-left: 0; 6 | list-style: none; 7 | } 8 | -------------------------------------------------------------------------------- /docs/_includes/page__hero_video.html: -------------------------------------------------------------------------------- 1 | {% capture video_id %}{{ page.header.video.id }}{% endcapture %} 2 | {% capture video_provider %}{{ page.header.video.provider }}{% endcapture %} 3 | 4 | {% include video id=video_id provider=video_provider %} 5 | -------------------------------------------------------------------------------- /docs/_layouts/category.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: archive 3 | --- 4 | 5 | {{ content }} 6 | 7 |
" | remove: "
" }} 12 |14 | {% if include.date %} 15 | {% if include.index %}{% endif %} 16 | 17 | {% if include.index %}{% endif %} 18 | {% endif %} 19 |
20 |17 | {{ site.data.ui-text[site.locale].tags_label | default: "Tags:" }} 18 | 19 | {% for hash in tag_hashes %} 20 | {% assign keyValue = hash | split: '|' %} 21 | {% capture tag_word %}{{ keyValue[1] | strip_newlines }}{% endcapture %} 22 | {{ tag_word }}{% unless forloop.last %}, {% endunless %} 23 | {% endfor %} 24 | 25 |
26 | {% endif %} -------------------------------------------------------------------------------- /docs/assets/scss/bootstrap/_images.scss: -------------------------------------------------------------------------------- 1 | // Responsive images (ensure images don't scale beyond their parents) 2 | // 3 | // This is purposefully opt-in via an explicit class rather than being the default for all `17 | {{ site.data.ui-text[site.locale].categories_label | default: "Categories:" }} 18 | 19 | {% for hash in category_hashes %} 20 | {% assign keyValue = hash | split: '|' %} 21 | {% capture category_word %}{{ keyValue[1] | strip_newlines }}{% endcapture %} 22 | {{ category_word }}{% unless forloop.last %}, {% endunless %} 23 | {% endfor %} 24 | 25 |
26 | {% endif %} -------------------------------------------------------------------------------- /docs/_layouts/tags.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: archive 3 | --- 4 | {% assign rawtags = "" %} 5 | {% for project in site.projects %} 6 | {% assign ttags = project.tags | append:'|' %} 7 | {% assign rawtags = rawtags | append:ttags %} 8 | {% endfor %} 9 | {% assign rawtags = rawtags | split:'|' | sort %} 10 | 11 | 12 | 13 |" | remove: "
" %} 9 | {% else %} 10 | {% assign title = post.title %} 11 | {% endif %} 12 | 13 |{{ post.excerpt | markdownify | strip_html | truncate: 160 }}
{% endif %} 37 |" | remove: "
" }}