Skip to content

Commit 4b71688

Browse files
authored
Merge pull request #19 from ionicfirebaseapp/master
master pull
2 parents 8b0eda5 + 819ac5d commit 4b71688

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+450
-348
lines changed

.github/FUNDING.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# These are supported funding model platforms
2+
3+
github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
4+
patreon: # Replace with a single Patreon username
5+
open_collective: getflutter
6+
ko_fi: # Replace with a single Ko-fi username
7+
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
8+
community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
9+
liberapay: # Replace with a single Liberapay username
10+
issuehunt: # Replace with a single IssueHunt username
11+
otechie: # Replace with a single Otechie username
12+
custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2']

.travis.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
os:
2+
- linux
3+
4+
sudo: false
5+
6+
git:
7+
depth: 3
8+
9+
cache:
10+
directories:
11+
- $HOME/.pub-cache
12+
13+
env:
14+
- FLUTTER_VERSION=stable
15+
16+
# Only building master means that we don't run two builds for each pull request.
17+
branches:
18+
only: [master]
19+
20+
before_script:
21+
- cd ../
22+
- git clone https://github.com/flutter/flutter.git -b $FLUTTER_VERSION
23+
- ./flutter/bin/flutter doctor
24+
- cd getflutter/
25+
26+
script:
27+
- ./../flutter/bin/flutter analyze .
28+
- ./../flutter/bin/cache/dart-sdk/bin/dartfmt --dry-run lib

CHANGELOG.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,33 @@
11
# Changelog
22

33

4+
## 1.0.0 - 2020-01-20
5+
6+
### Added
7+
* Stable version release
8+
* code refectoring
9+
* this release includes following stable components
10+
- GFAvatar
11+
- GFButton
12+
- GFIconButton
13+
- GFButtonBar
14+
- GFBadge
15+
- GFButtonBadge
16+
- GFIconBadge
17+
- GFCard
18+
- GFCarousel
19+
- GFImageOverlay
20+
- GFListTile
21+
- GFTabs
22+
- GFTypography
23+
24+
25+
## 1.0.0-dev.9 - 2020-01-17
26+
27+
### Added
28+
* Added library exports for commonly used files.
29+
30+
431
## 1.0.0-dev.8 - 2020-01-16
532

633
### Fixed

LICENSE

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
The MIT License (MIT)
2-
Copyright (c) 2020 GetFlutter.dev
2+
3+
All the components that we reused from flutter has Copyright (c) 2020 Flutter Author.
4+
5+
All the components that we developed or customized has Copyright (c) 2020 Getflutter.
6+
37
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
48
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
5-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
9+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

README.md

Lines changed: 21 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,13 @@
1+
[![pub package](https://img.shields.io/pub/v/getflutter.svg)](https://pub.dartlang.org/packages/getflutter) [![Open Source Love](https://badges.frapsoft.com/os/v1/open-source.svg?v=102)](https://opensource.org/licenses/MIT) [![License](https://img.shields.io/badge/license-MIT-orange.svg)](https://github.com/ionicfirebaseapp/getflutter/blob/master/LICENSE) [![Say Thanks!](https://img.shields.io/badge/Say%20Thanks-!-1EAEDB.svg)](https://www.getflutter.dev) [![Twitter Follow](https://img.shields.io/twitter/follow/getflutterdev.svg?style=social)](https://twitter.com/getflutterdev)
2+
3+
14
<p align="center">
2-
<a href="https://www.getflutter.dev/">
5+
<a href="https://www.getflutter.dev/" target="_blank">
36
<img src="https://ik.imagekit.io/ionicfirebaseapp/tr:w-auto-300/gf-logo-g-b_SYSBeqUrR.png" alt="Get Flutter">
47
</a>
58
</p>
69

7-
[**GetFlutter**](https://www.getflutter.dev) is a 100% Free Flutter open source UI library that is build to make flutter development easier than ever. GetFlutter has 1000+ pre-build widgets that you could reuse to build both Flutter Web or Mobile app development.
10+
[**GetFlutter**](https://www.getflutter.dev) is a 100% Free Flutter open-source UI library that is built to make flutter development easier and joyful than ever. GetFlutter has 1000+ pre-build widgets that you could reuse to build both Flutter mobile app and web app development. Our motto to provide the best Flutter UI library to Flutter community to speed up their development process and build awesome apps with pre-build Flutter Library Components.
811

912
## Table of contents
1013

@@ -13,7 +16,6 @@
1316
- [Features](#features)
1417
- [Demo](#demo)
1518
- [Contributing](#contributing)
16-
- [Bugs and feature requests](#bugs-and-feature-requests)
1719
- [Documentation](#documentation)
1820
- [Copyright and license](#copyright-and-license)
1921

@@ -33,27 +35,35 @@ Forum [Support and discussion ](https://forum.getflutter.dev)
3335
## Features
3436
In this beta release we are going to launch the library with following components :
3537

36-
#### Button | Badge | Avatar | Image | Card | Carousel | Tile | Tab | Typography
38+
#### [Button](https://docs.getflutter.dev/gf-button) | [Badge](https://docs.getflutter.dev/gf-badge) | [Avatar](https://docs.getflutter.dev/gf-avatar) | [Image](https://docs.getflutter.dev/gf-image) | [Card](https://docs.getflutter.dev/gf-card) | [Carousel](https://docs.getflutter.dev/gf-carousel) | [Tile](https://docs.getflutter.dev/gf-tile) | [Tab](https://docs.getflutter.dev/gf-tab) | [Typography](https://docs.getflutter.dev/gf-typography)
3739

3840

3941
## Demo
4042

41-
Coming Soon
43+
### Play Store
44+
<p align="left">
45+
<a href="https://play.google.com/store/apps/details?id=dev.getflutter.appkit" target="_blank">
46+
<img src="https://ik.imagekit.io/ionicfirebaseapp/tr:dpr-auto,tr:w-auto/playstore_NQQBiJIQ1.png" alt="Get Flutter playstore Demo">
47+
</a>
48+
</p>
49+
50+
### IOS Store and Web Demo
51+
Coming Soon
4252

4353

4454
## Contributing
4555

46-
GetFlutter is **100% free** and **open source**. We encourage and support an active, healthy community that accepts contributions from the public &ndash; including you!
47-
56+
GetFlutter is **100% free** and **open source**. We encourage and support an active, healthy community that accepts contributions from the public &ndash; including you. There are couple of ways in which you can contribute to the growing community of `getflutter`.
57+
58+
* Pick up any issue marked with ["good first issue"](https://github.com/ionicfirebaseapp/getflutter/issues?q=is%3Aopen+is%3Aissue+label%3A%22good+first+issue%22)
59+
* Fix a bug
60+
* Write and improve some **documentation**. Documentation is very critical to us. We would like to if you can support to add support in multiple language for our docs.
4861
* If you are a developer, feel free to check out the source and submit pull requests.
4962
* Dig into [**CONTRIBUTING.MD**](CONTRIBUTING.md), which covers submitting bugs, requesting new features, preparing your code for a pull request, etc.
5063
* Please don't forget to **like**, **follow**, and **star our repo**! Join our growing [community](http://forum.getflutter.dev) to keep up to date with the latest Get Flutter development.
5164
* Not sure what to work on? [**We've got lots ideas.**](https://roadmap.getflutter.dev)
5265

5366

54-
## Bugs-and-feature-requests
55-
56-
5767
## Documentation
5868

5969
[**Installation Guide**](https://docs.getflutter.dev)
@@ -72,4 +82,4 @@ Instagram: <https://www.instagram.com/getflutter.dev/>
7282

7383

7484
## Copyright-and-license
75-
Code and documentation copyright 2017-2020 the [GETFLUTTER Authors](https://www.getflutter.dev) and [PIETECH SOLUTION PVT LTD.](https://pietechsolution.com) Code released under the [MIT License]. Docs released under [Creative Commons](https://creativecommons.org/licenses/by/3.0/).
85+
Code and documentation copyright 2017-2020 the [GETFLUTTER Authors](https://www.getflutter.dev) and [IONICFIREBASEAPP](https://ionicfirebaseapp.com) Code released under the [MIT License]. Docs released under [Creative Commons](https://creativecommons.org/licenses/by/3.0/).

example/android/app/src/main/AndroidManifest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
FlutterApplication and put your custom class here. -->
88
<application
99
android:name="io.flutter.app.FlutterApplication"
10-
android:label="getflutter_example"
10+
android:label="GetFlutter"
1111
android:icon="@mipmap/ic_launcher">
1212
<activity
1313
android:name=".MainActivity"
1.48 KB
Loading
5.16 KB
Loading
1.13 KB
Loading
1.02 KB
Loading

0 commit comments

Comments
 (0)