diff --git a/README.md b/README.md
index 8fd99562..d8f0c390 100644
--- a/README.md
+++ b/README.md
@@ -7,8 +7,8 @@ Zeta is the new, formal, standardized Zebra Design System based off the successe
### Prerequisites
```
- dart sdk: ">=3.2.0 <4.0.0"
- flutter: ">=3.16.0"
+dart sdk: ">=3.2.0 <4.0.0"
+flutter: ">=3.16.0"
```
## Installation
@@ -30,7 +30,7 @@ Zeta allows you to specify an initial theme mode for your app, which can be one
By default, the theme mode is set to `ThemeMode.system`.
```dart
-initialThemeMode: ThemeMode.light
+initialThemeMode: ThemeMode.system
```
### Providing Initial Theme Data
diff --git a/example/assets/zebra-logo-head.svg b/example/assets/zebra-logo-head.svg
new file mode 100644
index 00000000..5b7ff704
--- /dev/null
+++ b/example/assets/zebra-logo-head.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/example/lib/home.dart b/example/lib/home.dart
index 492c343b..7201d7c5 100644
--- a/example/lib/home.dart
+++ b/example/lib/home.dart
@@ -148,7 +148,9 @@ class _HomeState extends State {
final _assets = assets..sort((a, b) => a.name.compareTo(b.name));
final _theme = theme..sort((a, b) => a.name.compareTo(b.name));
return ExampleScaffold(
- name: 'Zeta',
+ // x-release-please-start-version
+ name: 'zeta_flutter v0.9.1',
+ // x-release-please-end
child: SingleChildScrollView(
child: Column(
children: [
diff --git a/example/linux/flutter/generated_plugin_registrant.cc b/example/linux/flutter/generated_plugin_registrant.cc
index e71a16d2..f6f23bfe 100644
--- a/example/linux/flutter/generated_plugin_registrant.cc
+++ b/example/linux/flutter/generated_plugin_registrant.cc
@@ -6,6 +6,10 @@
#include "generated_plugin_registrant.h"
+#include
void fl_register_plugins(FlPluginRegistry* registry) {
+ g_autoptr(FlPluginRegistrar) url_launcher_linux_registrar =
+ fl_plugin_registry_get_registrar_for_plugin(registry, "UrlLauncherPlugin");
+ url_launcher_plugin_register_with_registrar(url_launcher_linux_registrar);
}
diff --git a/example/linux/flutter/generated_plugins.cmake b/example/linux/flutter/generated_plugins.cmake
index 2e1de87a..f16b4c34 100644
--- a/example/linux/flutter/generated_plugins.cmake
+++ b/example/linux/flutter/generated_plugins.cmake
@@ -3,6 +3,7 @@
#
list(APPEND FLUTTER_PLUGIN_LIST
+ url_launcher_linux
)
list(APPEND FLUTTER_FFI_PLUGIN_LIST
diff --git a/example/macos/Flutter/GeneratedPluginRegistrant.swift b/example/macos/Flutter/GeneratedPluginRegistrant.swift
index eefcc6d7..63ad0d13 100644
--- a/example/macos/Flutter/GeneratedPluginRegistrant.swift
+++ b/example/macos/Flutter/GeneratedPluginRegistrant.swift
@@ -8,9 +8,11 @@ import Foundation
import path_provider_foundation
import shared_preferences_foundation
import sqflite
+import url_launcher_macos
func RegisterGeneratedPlugins(registry: FlutterPluginRegistry) {
PathProviderPlugin.register(with: registry.registrar(forPlugin: "PathProviderPlugin"))
SharedPreferencesPlugin.register(with: registry.registrar(forPlugin: "SharedPreferencesPlugin"))
SqflitePlugin.register(with: registry.registrar(forPlugin: "SqflitePlugin"))
+ UrlLauncherPlugin.register(with: registry.registrar(forPlugin: "UrlLauncherPlugin"))
}
diff --git a/example/macos/Podfile.lock b/example/macos/Podfile.lock
index 8ed0a812..66e9c6e8 100644
--- a/example/macos/Podfile.lock
+++ b/example/macos/Podfile.lock
@@ -9,12 +9,15 @@ PODS:
- sqflite (0.0.3):
- Flutter
- FlutterMacOS
+ - url_launcher_macos (0.0.1):
+ - FlutterMacOS
DEPENDENCIES:
- FlutterMacOS (from `Flutter/ephemeral`)
- path_provider_foundation (from `Flutter/ephemeral/.symlinks/plugins/path_provider_foundation/darwin`)
- shared_preferences_foundation (from `Flutter/ephemeral/.symlinks/plugins/shared_preferences_foundation/darwin`)
- sqflite (from `Flutter/ephemeral/.symlinks/plugins/sqflite/darwin`)
+ - url_launcher_macos (from `Flutter/ephemeral/.symlinks/plugins/url_launcher_macos/macos`)
EXTERNAL SOURCES:
FlutterMacOS:
@@ -25,12 +28,15 @@ EXTERNAL SOURCES:
:path: Flutter/ephemeral/.symlinks/plugins/shared_preferences_foundation/darwin
sqflite:
:path: Flutter/ephemeral/.symlinks/plugins/sqflite/darwin
+ url_launcher_macos:
+ :path: Flutter/ephemeral/.symlinks/plugins/url_launcher_macos/macos
SPEC CHECKSUMS:
FlutterMacOS: 8f6f14fa908a6fb3fba0cd85dbd81ec4b251fb24
path_provider_foundation: 3784922295ac71e43754bd15e0653ccfd36a147c
shared_preferences_foundation: fcdcbc04712aee1108ac7fda236f363274528f78
sqflite: 673a0e54cc04b7d6dba8d24fb8095b31c3a99eec
+ url_launcher_macos: 5f437abeda8c85500ceb03f5c1938a8c5a705399
PODFILE CHECKSUM: 353c8bcc5d5b0994e508d035b5431cfe18c1dea7
diff --git a/example/pubspec.yaml b/example/pubspec.yaml
index be247afe..3e3314fb 100644
--- a/example/pubspec.yaml
+++ b/example/pubspec.yaml
@@ -11,9 +11,13 @@ dependencies:
cached_network_image: ^3.3.1
flutter:
sdk: flutter
+ flutter_svg: ^2.0.10+1
go_router: ^14.1.2
+ google_fonts: ^6.2.1
+ markdown_widget: ^2.3.2+6
path_drawing: ^1.0.1
shared_preferences: ^2.2.2
+ url_launcher: ^6.2.6
zeta_flutter:
path: ../
@@ -26,3 +30,4 @@ flutter:
uses-material-design: true
assets:
- assets/
+ - ../README.md
diff --git a/example/web/index.html b/example/web/index.html
index f9b1d73c..e1deead4 100644
--- a/example/web/index.html
+++ b/example/web/index.html
@@ -24,39 +24,18 @@
-
+
- zeta_flutter_example
+ zeta_flutter example
-
-
-
-
-
+