Skip to content

Commit

Permalink
Merge branch 'develop' into feat/widget_toolkit_pin-error-improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
DDavidPrime committed Jul 19, 2024
2 parents 4d97a83 + 2de6e47 commit 9ca7a36
Show file tree
Hide file tree
Showing 96 changed files with 404 additions and 707 deletions.
9 changes: 8 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -108,5 +108,12 @@ coverage/
!**/ios/**/default.perspectivev3
!/packages/flutter_tools/test/data/dart_dependencies_test/**/.packages
!/dev/ci/**/Gemfile.lock

!**/example/ios/Podfile.lock
!**/example/pubspec.lock
!**/example/pubspec.lock

# Exclude example platforms
**/example/macos/Flutter/
**/example/linux/flutter/
**/example/windows/flutter/
**/example/windows/Flutter/
5 changes: 5 additions & 0 deletions packages/widget_toolkit/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## [0.1.0]
### Breaking changes:
- Removed static `.withDependencies` constructor from widgets
- Added new widgets `*WithDependencies`

## [0.0.2]
- Upgrade major versions of dependencies: `theme_tailor`, `theme_tailor_annotation`
### Breaking changes:
Expand Down
12 changes: 6 additions & 6 deletions packages/widget_toolkit/example/lib/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -123,12 +123,12 @@ class CommonComponentsPage extends StatelessWidget {
Widget build(BuildContext context) => SingleChildScrollView(
child: Column(
children: [
WidgetSection(
const WidgetSection(
description: 'OpenUrlWidget - launch URL link',
child: OpenUrlWidget.withDependencies(
child: OpenUrlWidgetWithDependencies(
url: 'https://www.primeholding.com/',
translateError: translateError,
child: const Text(
child: Text(
'https://www.primeholding.com/',
style: TextStyle(
color: Colors.blue,
Expand All @@ -138,13 +138,13 @@ class CommonComponentsPage extends StatelessWidget {
),
),
),
WidgetSection(
const WidgetSection(
description: 'OpenUrlWidget - call a phone number',
child: OpenUrlWidget.withDependencies(
child: OpenUrlWidgetWithDependencies(
url: '+123456789012',
uriType: UriType.telephone,
translateError: translateError,
child: const Text(
child: Text(
'+123456789012',
style: TextStyle(
color: Colors.blue,
Expand Down

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

Loading

0 comments on commit 9ca7a36

Please sign in to comment.