This repository has been archived by the owner on Jan 31, 2021. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
848e835
commit b4853f3
Showing
4 changed files
with
53 additions
and
39 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
/* | ||
* Copyright 2018 Ruben Talstra and Yvan Watchman | ||
* | ||
* Licensed under the GNU General Public License v3.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* https://www.gnu.org/licenses/gpl-3.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
class PartnerList { | ||
final String name; | ||
final String url; | ||
final String logo.dark; | ||
final String logo.light; | ||
final String colors.primary; | ||
final String colors.secondary; | ||
|
||
PartnerList( | ||
{this.name, this.url, this.logo.dark, this.logo.light, this.colors.primary, this.colors.secondary}); | ||
|
||
static final List<PartnerList> partnerList = [ | ||
PartnerList( | ||
name: "", | ||
url: "", | ||
logo: { | ||
dark: "", | ||
light: "" | ||
}, | ||
colors: { | ||
primary: "", | ||
secondary: "" | ||
}, | ||
), | ||
]; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,7 +11,7 @@ description: A Pterodactyl Mobile App. | |
# In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion. | ||
# Read more about iOS versioning at | ||
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html | ||
version: 3.3.5+45 | ||
version: 3.3.6+48 | ||
authors: | ||
- Ruben Talstra <[email protected]> | ||
- Yvan Watchman <[email protected]> | ||
|
@@ -26,8 +26,6 @@ dependencies: | |
flutter_localizations: | ||
sdk: flutter | ||
|
||
# The following adds the Cupertino Icons font to your application. | ||
# Use with the CupertinoIcons class for iOS style icons. | ||
cupertino_icons: ^0.1.2 | ||
http: any | ||
convert: ^2.1.1 | ||
|
@@ -51,18 +49,10 @@ dev_dependencies: | |
flutter_test: | ||
sdk: flutter | ||
|
||
# For information on the generic Dart part of this file, see the | ||
# following page: https://www.dartlang.org/tools/pub/pubspec | ||
|
||
# The following section is specific to Flutter. | ||
flutter: | ||
|
||
# The following line ensures that the Material Icons font is | ||
# included with your application, so that you can use the icons in | ||
# the material Icons class. | ||
uses-material-design: true | ||
|
||
# To add assets to your application, add an assets section, like this: | ||
assets: | ||
- assets/images/pterodactyl_icon.png | ||
- assets/lang/en_US.json | ||
|
@@ -85,26 +75,9 @@ flutter: | |
|
||
# An image asset can refer to one or more resolution-specific "variants", see | ||
# https://flutter.io/assets-and-images/#resolution-aware. | ||
|
||
# For details regarding adding assets from package dependencies, see | ||
# https://flutter.io/assets-and-images/#from-packages | ||
|
||
# To add custom fonts to your application, add a fonts section here, | ||
# in this "flutter" section. Each entry in this list should have a | ||
# "family" key with the font family name, and a "fonts" key with a | ||
# list giving the asset and other descriptors for the font. For | ||
# example: | ||
fonts: | ||
- family: Cairo | ||
fonts: | ||
- asset: assets/fonts/Cairo-Regular.ttf | ||
- asset: assets/fonts/Cairo-Bold.ttf | ||
weight: 700 | ||
# - family: Trajan Pro | ||
# fonts: | ||
# - asset: fonts/TrajanPro.ttf | ||
# - asset: fonts/TrajanPro_Bold.ttf | ||
# weight: 700 | ||
# | ||
# For details regarding fonts from package dependencies, | ||
# see https://flutter.io/custom-fonts/#from-packages |