Skip to content

Commit 2eee159

Browse files
authored
Merge pull request #30 from ionicfirebaseapp/master
pull merge
2 parents 23bb093 + e127231 commit 2eee159

Some content is hidden

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

53 files changed

+490
-423
lines changed

.github/FUNDING.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
44
patreon: # Replace with a single Patreon username
5-
open_collective: getflutter
5+
open_collective: getwidget
66
ko_fi: # Replace with a single Ko-fi username
77
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
88
community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry

.gitignore

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
.buildlog/
99
.history
1010
.svn/
11+
.vscode
1112

1213
# IntelliJ related
1314
*.iml
@@ -29,9 +30,9 @@
2930
.pub/
3031
build/
3132
web/
32-
getflutter-app-kit
33-
getflutter-web-kit
34-
getflutter_app
33+
getwidget-app-kit
34+
getwidget-web-kit
35+
getwidget_app
3536
test/.test_coverage.dart
3637

3738
# Android related

CHANGELOG.md

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,37 @@
11
# Changelog
22

3+
## 1.1.1 - 2020-06-26
4+
5+
### Added
6+
* added new components
7+
- GFCheckbox
8+
- GFRadio
9+
10+
### Update
11+
* Changed name to GetWidget
12+
13+
### Fixed
14+
* Many minor issues fixed
15+
16+
17+
18+
19+
## 1.0.11 - 2020-03-11
20+
21+
### Fixed
22+
* Resolved issues.
23+
24+
25+
26+
27+
## 1.0.10 - 2020-03-11
28+
29+
### Fixed
30+
* Few minor fixes
31+
32+
33+
34+
335
## 1.0.9 - 2020-03-02
436

537
### Fixed
@@ -9,6 +41,9 @@
941
* added new component
1042
- GFShimmer
1143

44+
45+
46+
1247
## 1.0.8 - 2020-02-18
1348

1449
### Fixed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ The MIT License (MIT)
22

33
All the components that we reused from flutter has Copyright (c) 2020 Flutter Author.
44

5-
All the components that we developed or customized has Copyright (c) 2020 Getflutter.
5+
All the components that we developed or customized has Copyright (c) 2020 GetWidget.
66

77
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:
88
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

README.md

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
[![Financial Contributors on Open Collective](https://opencollective.com/getflutter/all/badge.svg?label=financial+contributors)](https://opencollective.com/getflutter) [![pub package](https://img.shields.io/pub/v/getflutter.svg)](https://pub.dartlang.org/packages/getflutter) [![Build Status](https://travis-ci.org/ionicfirebaseapp/getflutter.svg?branch=master)](https://travis-ci.com/ionicfirebaseapp/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/getwidget/blob/master/LICENSE) [![Gitter](https://badges.gitter.im/getflutterdev/getflutter.svg)](https://gitter.im/getflutterdev/getflutter) [![Twitter Follow](https://img.shields.io/twitter/follow/getflutterdev.svg?style=social)](https://twitter.com/getwidgetdev)
1+
[![pub package](https://img.shields.io/pub/v/getwidget.svg)](https://pub.dartlang.org/packages/getwidget) [![Build Status](https://travis-ci.org/ionicfirebaseapp/getwidget.svg?branch=master)](https://travis-ci.com/ionicfirebaseapp/getwidget) [![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/getwidget/blob/master/LICENSE) [![Twitter Follow](https://img.shields.io/twitter/follow/getwidgetdev.svg?style=social)](https://twitter.com/getwidgetdev)
22

33

44
<p align="center">
5-
<a href="https://www.getwidget.dev/" target="_blank">
6-
<img src="https://ik.imagekit.io/ionicfirebaseapp/logo.black_iOBoLWdj2I.png" alt="Get Flutter">
5+
<a href="https://docs.getwidget.dev/" target="_blank">
6+
<img src="https://ik.imagekit.io/ionicfirebaseapp/logo.black_iOBoLWdj2I.png" alt="GetWidget">
77
</a>
88
</p>
99

@@ -22,8 +22,8 @@
2222

2323
## Screenshot
2424
<p align="center">
25-
<a target="_blank" href="https://www.getwidget.dev/">
26-
<img src="https://ik.imagekit.io/ionicfirebaseapp/GitHub_1_O8ZlrxSIo.png" alt="Get Flutter Screens">
25+
<a target="_blank" href="https://docs.getwidget.dev/">
26+
<img src="https://ik.imagekit.io/ionicfirebaseapp/GitHub_1_O8ZlrxSIo.png" alt="GetWidget Screens">
2727
</a>
2828
</p>
2929

@@ -44,7 +44,7 @@ we have launched the library with the following components :
4444
### Play Store
4545
<p align="left">
4646
<a href="https://play.google.com/store/apps/details?id=dev.getflutter.appkit" target="_blank">
47-
<img src="https://ik.imagekit.io/ionicfirebaseapp/tr:dpr-auto,tr:w-auto/playstore_NQQBiJIQ1.png" alt="Get Flutter playstore Demo">
47+
<img src="https://ik.imagekit.io/ionicfirebaseapp/tr:dpr-auto,tr:w-auto/playstore_NQQBiJIQ1.png" alt="GetWidget playstore Demo">
4848
</a>
4949
</p>
5050

@@ -57,13 +57,13 @@ we have launched the library with the following components :
5757

5858
GetWidget 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 a couple of ways in which you can contribute to the growing community of `getwidget`.
5959

60-
* 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)
60+
* Pick up any issue marked with ["good first issue"](https://github.com/ionicfirebaseapp/getwidget/issues?q=is%3Aopen+is%3Aissue+label%3A%22good+first+issue%22)
6161
* Fix a bug
6262
* Write and improve some **documentation**. Documentation is very critical to us. We would appreciate help in adding multiple languages to our docs.
6363
* If you are a developer, feel free to check out the source and submit pull requests.
6464
* Dig into [**CONTRIBUTING.MD**](CONTRIBUTING.md), which covers submitting bugs, requesting new features, preparing your code for a pull request, etc.
65-
* 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 GetWidget development.
66-
* Not sure what to work on? [**We've got lots ideas.**](https://roadmap.getflutter.dev)
65+
* Please don't forget to **like**, **follow**, and **star our repo**! Join our growing [community](http://forum.getwidget.dev) to keep up to date with the latest GetWidget development.
66+
6767

6868

6969
## Documentation
@@ -90,27 +90,27 @@ Instagram: <https://www.instagram.com/getwidget.dev/>
9090
### Code Contributors
9191

9292
This project exists thanks to all the people who contribute. [[Contribute](CONTRIBUTING.md)].
93-
<a href="https://github.com/ionicfirebaseapp/getwidget/graphs/contributors"><img src="https://opencollective.com/getflutter/contributors.svg?width=890&button=false" /></a>
93+
<a href="https://github.com/ionicfirebaseapp/getwidget/graphs/contributors"><img src="https://opencollective.com/getwidget/contributors.svg?width=890&button=false" /></a>
9494

9595
### Financial Contributors
9696

97-
Become a financial contributor and help us sustain our community. [[Contribute](https://opencollective.com/getflutter/contribute)]
97+
Become a financial contributor and help us sustain our community. [[Contribute](https://opencollective.com/getwidget/contribute)]
9898

9999
#### Individuals
100100

101-
<a href="https://opencollective.com/getflutter"><img src="https://opencollective.com/getflutter/individuals.svg?width=890"></a>
101+
<a href="https://opencollective.com/getwidget"><img src="https://opencollective.com/getwidget/individuals.svg?width=890"></a>
102102

103103
#### Organizations
104104

105-
Support this project with your organization. Your logo will show up here with a link to your website. [[Contribute](https://opencollective.com/getflutter/contribute)]
106-
107-
<a href="https://opencollective.com/getflutter/organization/0/website"><img src="https://opencollective.com/getflutter/organization/0/avatar.svg"></a>
108-
<a href="https://opencollective.com/getflutter/organization/1/website"><img src="https://opencollective.com/getflutter/organization/1/avatar.svg"></a>
109-
<a href="https://opencollective.com/getflutter/organization/2/website"><img src="https://opencollective.com/getflutter/organization/2/avatar.svg"></a>
110-
<a href="https://opencollective.com/getflutter/organization/3/website"><img src="https://opencollective.com/getflutter/organization/3/avatar.svg"></a>
111-
<a href="https://opencollective.com/getflutter/organization/4/website"><img src="https://opencollective.com/getflutter/organization/4/avatar.svg"></a>
112-
<a href="https://opencollective.com/getflutter/organization/5/website"><img src="https://opencollective.com/getflutter/organization/5/avatar.svg"></a>
113-
<a href="https://opencollective.com/getflutter/organization/6/website"><img src="https://opencollective.com/getflutter/organization/6/avatar.svg"></a>
114-
<a href="https://opencollective.com/getflutter/organization/7/website"><img src="https://opencollective.com/getflutter/organization/7/avatar.svg"></a>
115-
<a href="https://opencollective.com/getflutter/organization/8/website"><img src="https://opencollective.com/getflutter/organization/8/avatar.svg"></a>
116-
<a href="https://opencollective.com/getflutter/organization/9/website"><img src="https://opencollective.com/getflutter/organization/9/avatar.svg"></a>
105+
Support this project with your organization. Your logo will show up here with a link to your website. [[Contribute](https://opencollective.com/getwidget/contribute)]
106+
107+
<a href="https://opencollective.com/getwidget/organization/0/website"><img src="https://opencollective.com/getwidget/organization/0/avatar.svg"></a>
108+
<a href="https://opencollective.com/getwidget/organization/1/website"><img src="https://opencollective.com/getwidget/organization/1/avatar.svg"></a>
109+
<a href="https://opencollective.com/getwidget/organization/2/website"><img src="https://opencollective.com/getwidget/organization/2/avatar.svg"></a>
110+
<a href="https://opencollective.com/getwidget/organization/3/website"><img src="https://opencollective.com/getwidget/organization/3/avatar.svg"></a>
111+
<a href="https://opencollective.com/getwidget/organization/4/website"><img src="https://opencollective.com/getwidget/organization/4/avatar.svg"></a>
112+
<a href="https://opencollective.com/getwidget/organization/5/website"><img src="https://opencollective.com/getwidget/organization/5/avatar.svg"></a>
113+
<a href="https://opencollective.com/getwidget/organization/6/website"><img src="https://opencollective.com/getwidget/organization/6/avatar.svg"></a>
114+
<a href="https://opencollective.com/getwidget/organization/7/website"><img src="https://opencollective.com/getwidget/organization/7/avatar.svg"></a>
115+
<a href="https://opencollective.com/getwidget/organization/8/website"><img src="https://opencollective.com/getwidget/organization/8/avatar.svg"></a>
116+
<a href="https://opencollective.com/getwidget/organization/9/website"><img src="https://opencollective.com/getwidget/organization/9/avatar.svg"></a>

analysis_options.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
analyzer:
22
exclude:
33
- example
4-
- getflutter_app
5-
- getflutter-app-kit
6-
- getflutter-web-kit
4+
- getwidget_app
5+
- getwidget-app-kit
6+
- getwidget-web-kit
77
- test/.test_coverage.dart
88

99
linter:

0 commit comments

Comments
 (0)