Skip to content
This repository has been archived by the owner on May 11, 2020. It is now read-only.

Commit

Permalink
preparing for 0.2.1, visualqa in progress
Browse files Browse the repository at this point in the history
  • Loading branch information
kekland committed Jul 18, 2019
1 parent db079a9 commit d798a19
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 17 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,11 @@
# 0.2.1

- Breaking changes:
- Added `leading`, `trailing`, `padding`, and other stuff into `EqButton`.
- Added more customization for EqTabs.
- Changed `EqTabData`.
- Added `EqTabData.fromIcon()`.

# 0.2.4

- Another `EqButton` hotfix.
Expand Down
10 changes: 5 additions & 5 deletions example/lib/home_page.dart
Expand Up @@ -68,7 +68,7 @@ class _HomePageState extends State<HomePage> {
footer: EqButton(
appearance: EqWidgetAppearance.ghost,
onTap: () {},
label: 'Log in',
label: Text('Log in'),
size: EqWidgetSize.large,
status: EqWidgetStatus.primary,
),
Expand All @@ -86,19 +86,19 @@ class _HomePageState extends State<HomePage> {
defaultSelected: 0,
onSelect: (v) {},
tabs: [
EqTabData(
EqTabData.fromIcon(
icon: EvaIcons.star,
title: 'Tab 1',
),
EqTabData(
EqTabData.fromIcon(
icon: EvaIcons.star,
title: 'Tab 2',
),
EqTabData(
EqTabData.fromIcon(
icon: EvaIcons.star,
title: 'Tab 3',
),
EqTabData(
EqTabData.fromIcon(
icon: EvaIcons.star,
title: 'Tab 4',
),
Expand Down
12 changes: 6 additions & 6 deletions example/pubspec.lock
@@ -1,13 +1,13 @@
# Generated by pub
# See https://www.dartlang.org/tools/pub/glossary#lockfile
# See https://dart.dev/tools/pub/glossary#lockfile
packages:
async:
dependency: transitive
description:
name: async
url: "https://pub.dartlang.org"
source: hosted
version: "2.1.0"
version: "2.2.0"
boolean_selector:
dependency: transitive
description:
Expand Down Expand Up @@ -35,7 +35,7 @@ packages:
path: ".."
relative: true
source: path
version: "0.2.4"
version: "0.3.1"
eva_icons_flutter:
dependency: transitive
description:
Expand Down Expand Up @@ -80,14 +80,14 @@ packages:
name: pedantic
url: "https://pub.dartlang.org"
source: hosted
version: "1.5.0"
version: "1.7.0"
quiver:
dependency: transitive
description:
name: quiver
url: "https://pub.dartlang.org"
source: hosted
version: "2.0.2"
version: "2.0.3"
sky_engine:
dependency: transitive
description: flutter
Expand Down Expand Up @@ -141,7 +141,7 @@ packages:
name: test_api
url: "https://pub.dartlang.org"
source: hosted
version: "0.2.4"
version: "0.2.5"
typed_data:
dependency: transitive
description:
Expand Down
10 changes: 5 additions & 5 deletions pubspec.lock
@@ -1,13 +1,13 @@
# Generated by pub
# See https://www.dartlang.org/tools/pub/glossary#lockfile
# See https://dart.dev/tools/pub/glossary#lockfile
packages:
async:
dependency: transitive
description:
name: async
url: "https://pub.dartlang.org"
source: hosted
version: "2.1.0"
version: "2.2.0"
boolean_selector:
dependency: transitive
description:
Expand Down Expand Up @@ -73,14 +73,14 @@ packages:
name: pedantic
url: "https://pub.dartlang.org"
source: hosted
version: "1.5.0"
version: "1.7.0"
quiver:
dependency: transitive
description:
name: quiver
url: "https://pub.dartlang.org"
source: hosted
version: "2.0.2"
version: "2.0.3"
sky_engine:
dependency: transitive
description: flutter
Expand Down Expand Up @@ -134,7 +134,7 @@ packages:
name: test_api
url: "https://pub.dartlang.org"
source: hosted
version: "0.2.4"
version: "0.2.5"
typed_data:
dependency: transitive
description:
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Expand Up @@ -13,7 +13,7 @@ homepage: https://github.com/kekland/equinox
# 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: 0.2.4
version: 0.3.1

environment:
sdk: ">=2.2.2 <3.0.0"
Expand Down

0 comments on commit d798a19

Please sign in to comment.