diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 72f7a43..23f7a99 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -44,13 +44,14 @@ jobs: run: flutter build web - name: Publishing to GitHub Pages - uses: peaceiris/actions-gh-pages@v3 + uses: peaceiris/actions-gh-pages@v4 with: publish_dir: ./build/web github_token: ${{ secrets.GITHUB_TOKEN }} + cname: testainers.com - name: Creating a GitHub Tag - uses: mathieudutour/github-tag-action@v6.1 + uses: mathieudutour/github-tag-action@v6.2 with: custom_tag: ${{ env.VERSION }} tag_prefix: '' diff --git a/.metadata b/.metadata index e1ab09f..784ce12 100644 --- a/.metadata +++ b/.metadata @@ -1,11 +1,11 @@ # This file tracks properties of this Flutter project. # Used by Flutter tool to assess capabilities and perform upgrades etc. # -# This file should be version controlled. +# This file should be version controlled and should not be manually edited. version: - revision: 796c8ef79279f9c774545b3771238c3098dbefab - channel: stable + revision: "a14f74ff3a1cbd521163c5f03d68113d50af93d3" + channel: "stable" project_type: app @@ -13,11 +13,11 @@ project_type: app migration: platforms: - platform: root - create_revision: 796c8ef79279f9c774545b3771238c3098dbefab - base_revision: 796c8ef79279f9c774545b3771238c3098dbefab + create_revision: a14f74ff3a1cbd521163c5f03d68113d50af93d3 + base_revision: a14f74ff3a1cbd521163c5f03d68113d50af93d3 - platform: web - create_revision: 796c8ef79279f9c774545b3771238c3098dbefab - base_revision: 796c8ef79279f9c774545b3771238c3098dbefab + create_revision: a14f74ff3a1cbd521163c5f03d68113d50af93d3 + base_revision: a14f74ff3a1cbd521163c5f03d68113d50af93d3 # User provided section diff --git a/assets/images/pix.png b/assets/images/pix.png new file mode 100644 index 0000000..15dbaa0 Binary files /dev/null and b/assets/images/pix.png differ diff --git a/assets/images/testainers-250-transparent.png b/assets/images/testainers-250-transparent.png index 530800b..4044c2e 100644 Binary files a/assets/images/testainers-250-transparent.png and b/assets/images/testainers-250-transparent.png differ diff --git a/assets/images/testainers-250.png b/assets/images/testainers-250.png index 0b69dbf..4e321a0 100644 Binary files a/assets/images/testainers-250.png and b/assets/images/testainers-250.png differ diff --git a/assets/images/testainers-500-transparent.png b/assets/images/testainers-500-transparent.png index afd22cd..9492992 100644 Binary files a/assets/images/testainers-500-transparent.png and b/assets/images/testainers-500-transparent.png differ diff --git a/lib/button_widget.dart b/lib/button_widget.dart new file mode 100644 index 0000000..4f328db --- /dev/null +++ b/lib/button_widget.dart @@ -0,0 +1,42 @@ +import 'package:flutter/material.dart'; +import 'package:url_launcher/url_launcher_string.dart'; + +/// +/// +/// +class ButtonWidget extends StatelessWidget { + final String label; + final String iconName; + final String? url; + + /// + /// + /// + const ButtonWidget({ + required this.label, + required this.iconName, + this.url, + super.key, + }); + + /// + /// + /// + @override + Widget build(BuildContext context) { + return Padding( + padding: const EdgeInsets.all(8), + child: ElevatedButton( + onPressed: url == null ? null : () => launchUrlString(url!), + child: Row( + mainAxisSize: MainAxisSize.min, + children: [ + Image.asset('assets/icons/$iconName.png', height: 16), + const SizedBox(width: 8), + Text(label), + ], + ), + ), + ); + } +} diff --git a/lib/description_widget.dart b/lib/description_widget.dart new file mode 100644 index 0000000..3263029 --- /dev/null +++ b/lib/description_widget.dart @@ -0,0 +1,65 @@ +import 'package:flutter/material.dart'; + +/// +/// +/// +class DescriptionWidget extends StatelessWidget { + final String? imageName; + final List paragraphs; + + /// + /// + /// + const DescriptionWidget({ + this.imageName, + this.paragraphs = const [], + super.key, + }); + + /// + /// + /// + @override + Widget build(BuildContext context) { + return Row( + mainAxisAlignment: MainAxisAlignment.spaceAround, + children: [ + Flexible( + child: Column( + mainAxisAlignment: MainAxisAlignment.center, + children: [ + if (imageName != null) + Image.asset( + 'assets/images/$imageName.png', + ) + else + Container(), + ], + ), + ), + Flexible( + child: Column( + children: [ + if (paragraphs.isNotEmpty) + ...paragraphs.map( + (String paragraph) => Padding( + padding: const EdgeInsets.all(8), + child: Text( + paragraph, + textAlign: TextAlign.center, + style: Theme.of(context) + .textTheme + .bodySmall + ?.copyWith(fontSize: 20), + ), + ), + ) + else + Container(), + ], + ), + ), + ], + ); + } +} diff --git a/lib/header_widget.dart b/lib/header_widget.dart new file mode 100644 index 0000000..9c44ece --- /dev/null +++ b/lib/header_widget.dart @@ -0,0 +1,30 @@ +import 'package:flutter/material.dart'; + +/// +/// +/// +class HeaderWidget extends StatelessWidget { + final String label; + + /// + /// + /// + const HeaderWidget( + this.label, { + super.key, + }); + + /// + /// + /// + @override + Widget build(BuildContext context) { + return Text( + label, + style: Theme.of(context).textTheme.titleLarge?.copyWith( + fontSize: 50, + fontWeight: FontWeight.bold, + ), + ); + } +} diff --git a/lib/main.dart b/lib/main.dart index cc8a4cf..d690acb 100644 --- a/lib/main.dart +++ b/lib/main.dart @@ -1,7 +1,10 @@ -import 'package:flutter/foundation.dart'; +// ignore_for_file: no_adjacent_strings_in_list + import 'package:flutter/material.dart'; import 'package:google_fonts/google_fonts.dart'; -import 'package:url_launcher/url_launcher_string.dart'; +import 'package:site/button_widget.dart'; +import 'package:site/description_widget.dart'; +import 'package:site/header_widget.dart'; /// /// @@ -14,15 +17,10 @@ void main() { /// /// class Site extends StatelessWidget { - final Color baseColor; - /// /// /// - const Site({ - this.baseColor = const Color(0x00ca8ba2), - super.key, - }); + const Site({super.key}); /// /// @@ -30,7 +28,7 @@ class Site extends StatelessWidget { @override Widget build(BuildContext context) { final ThemeData baseTheme = ThemeData( - colorSchemeSeed: baseColor, + colorSchemeSeed: const Color(0xffca8ba2), brightness: Brightness.dark, visualDensity: VisualDensity.adaptivePlatformDensity, ); @@ -40,14 +38,6 @@ class Site extends StatelessWidget { debugShowCheckedModeBanner: false, theme: baseTheme.copyWith( textTheme: GoogleFonts.mulishTextTheme(baseTheme.textTheme), - switchTheme: SwitchThemeData( - thumbColor: MaterialStateProperty.resolveWith( - (Set states) => - states.contains(MaterialState.selected) - ? baseTheme.colorScheme.primary - : null, - ), - ), ), home: const MyHomePage(), ); @@ -77,130 +67,211 @@ class _MyHomePageState extends State { @override Widget build(BuildContext context) { return Scaffold( - backgroundColor: const Color(0x00ca8ba2), + backgroundColor: const Color(0xffca8ba2), appBar: AppBar( title: const Text('testainers'), backgroundColor: Colors.black26, centerTitle: false, elevation: 0, ), - body: Padding( - padding: const EdgeInsets.all(32), - child: Column( - children: [ - Text( - 'testainers', - style: Theme.of(context).textTheme.titleLarge?.copyWith( - fontSize: 50, - fontWeight: FontWeight.bold, + body: const SingleChildScrollView( + child: Padding( + padding: EdgeInsets.all(32), + child: Column( + children: [ + /// Global + /// Github + // ButtonWidget( + // label: 'GitHub', + // iconName: 'github', + // url: 'https://github.com/testainers/testainers', + // ), + + /// Docker Hub + // ButtonWidget( + // label: 'Docker Hub', + // iconName: 'docker', + // url: 'https://hub.docker.com/u/testainers', + // ), + + /// testainers + HeaderWidget('testainers'), + DescriptionWidget( + imageName: 'testainers-250-transparent', + paragraphs: [ + 'Testainers is a powerful Dart plugin designed to ' + 'streamline the management of containers for testing ' + 'purposes.', + 'With Testainers, developers can effortlessly create, ' + 'configure, and manage isolated test environments ' + 'within containers, ensuring consistent and reliable ' + 'testing processes.', + ], + ), + Row( + mainAxisAlignment: MainAxisAlignment.center, + children: [ + /// Pub.dev + ButtonWidget( + label: 'pub.dev', + iconName: 'dart', + url: 'https://pub.dev/packages/testainers', ), - ), - const SizedBox(height: 16), - Row( - mainAxisAlignment: MainAxisAlignment.spaceAround, - children: [ - Flexible( - child: Column( - mainAxisAlignment: MainAxisAlignment.center, - children: [ - Image.asset( - 'assets/images/testainers-250-transparent.png', - ), - ], + + /// Github + ButtonWidget( + label: 'GitHub', + iconName: 'github', + url: 'https://github.com/testainers/testainers', ), - ), - Flexible( - child: Column( - children: [ - Padding( - padding: const EdgeInsets.all(8), - child: Text( - 'Testainers is a powerful Dart plugin designed to streamline ' - 'the management of containers for testing purposes.', - textAlign: TextAlign.center, - style: Theme.of(context) - .textTheme - .bodySmall - ?.copyWith(fontSize: 20), - ), - ), - Padding( - padding: const EdgeInsets.all(8), - child: Text( - 'With Testainers, developers can effortlessly create, ' - 'configure, and manage isolated test environments within ' - 'containers, ensuring consistent and reliable testing ' - 'processes.', - textAlign: TextAlign.center, - style: Theme.of(context) - .textTheme - .bodySmall - ?.copyWith(fontSize: 20), - ), - ), - ], + + /// Web + // TODO(edufolly): https://testainers.testainers.com/ + ], + ), + SizedBox(height: 36), + + /// httpbucket + HeaderWidget('httpbucket'), + DescriptionWidget( + imageName: 'testainers-250-transparent', + paragraphs: [ + 'httpucket is a powerful microservice designed specifically ' + 'for testing HTTP requests with a wide range of request ' + 'URLs. It serves as a valuable tool for developers, ' + 'quality assurance teams, and anyone involved in API ' + 'development. By providing a flexible and user-friendly ' + 'interface, HTTPBucket simplifies the process of testing ' + 'and validating various types of HTTP requests.', + ], + ), + Row( + mainAxisAlignment: MainAxisAlignment.center, + children: [ + /// Github + ButtonWidget( + label: 'GitHub', + iconName: 'github', + url: 'https://github.com/testainers/httpbucket', ), - ) - ], - ), - const SizedBox(height: 16), - Row( - mainAxisAlignment: MainAxisAlignment.center, - children: [ - /// Pub.dev - Padding( - padding: const EdgeInsets.all(8), - child: ElevatedButton( - onPressed: () => - launchUrlString('https://pub.dev/packages/testainers'), - child: Row( - mainAxisSize: MainAxisSize.min, - children: [ - Image.asset('assets/icons/dart.png', height: 16), - const SizedBox(width: 8), - const Text('pub.dev'), - ], - ), + + /// Docker Hub + ButtonWidget( + label: 'Docker Hub', + iconName: 'docker', + url: 'https://hub.docker.com/r/testainers/httpbucket', ), - ), - - /// Github - Padding( - padding: const EdgeInsets.all(8), - child: ElevatedButton( - onPressed: () => - launchUrlString('https://github.com/testainers'), - child: Row( - mainAxisSize: MainAxisSize.min, - children: [ - Image.asset('assets/icons/github.png', height: 16), - const SizedBox(width: 8), - const Text('GitHub'), - ], - ), + + /// Web + // TODO(edufolly): https://httpbucket.testainers.com/ + ], + ), + SizedBox(height: 36), + + /// sshd-container + HeaderWidget('sshd-container'), + DescriptionWidget( + imageName: 'testainers-250-transparent', + paragraphs: [ + 'The small container image is designed specifically for ' + 'testing SSH connections.', + 'It serves as a lightweight and efficient tool to verify ' + 'and troubleshoot SSH connectivity in various scenarios. ' + 'With its compact size, the container can be easily ' + 'deployed and run on different systems or platforms ' + 'without consuming excessive resources.', + ], + ), + Row( + mainAxisAlignment: MainAxisAlignment.center, + children: [ + /// Github + ButtonWidget( + label: 'GitHub', + iconName: 'github', + url: 'https://github.com/testainers/sshd-container', ), - ), - - /// Docker Hub - Padding( - padding: const EdgeInsets.all(8), - child: ElevatedButton( - onPressed: () => launchUrlString( - 'https://hub.docker.com/u/testainers', - ), - child: Row( - mainAxisSize: MainAxisSize.min, - children: [ - Image.asset('assets/icons/docker.png', height: 16), - const SizedBox(width: 8), - const Text('Docker Hub'), - ], - ), + + /// Docker Hub + ButtonWidget( + label: 'Docker Hub', + iconName: 'docker', + url: 'https://hub.docker.com/r/testainers/sshd-container', + ), + + /// Web + // TODO(edufolly): Create web page + ], + ), + SizedBox(height: 36), + + /// snmpd-container + HeaderWidget('snmpd-container'), + DescriptionWidget( + imageName: 'testainers-250-transparent', + paragraphs: [ + 'The small container image is designed specifically for ' + 'testing SNMP connections.', + ], + ), + Row( + mainAxisAlignment: MainAxisAlignment.center, + children: [ + /// Github + ButtonWidget( + label: 'GitHub', + iconName: 'github', + url: 'https://github.com/testainers/snmpd-container', + ), + + /// Docker Hub + ButtonWidget( + label: 'Docker Hub', + iconName: 'docker', + url: 'https://hub.docker.com/r/testainers/snmpd-container', ), - ), - ], - ), - ], + + /// Web + // TODO(edufolly): Create web page + ], + ), + SizedBox(height: 36), + + /// check + HeaderWidget('check'), + DescriptionWidget( + imageName: 'testainers-250-transparent', + paragraphs: [ + 'Our CLI HTTP Request tool engineered to simplify and ' + 'expedite your web interactions. With its user-friendly ' + 'commands and comprehensive features, Check empowers ' + 'users to seamlessly navigate HTTP requests for tasks ' + 'like API testing, data retrieval, and web development. ' + 'Say farewell to cumbersome setups and clunky ' + 'interfaces; Check prioritizes intuitive usability ' + 'without sacrificing functionality. Whether you are a ' + 'seasoned developer or just dipping your toes into web ' + 'technologies, Check is your dependable companion for ' + 'confidently mastering the intricacies of web requests.', + ], + ), + Row( + mainAxisAlignment: MainAxisAlignment.center, + children: [ + /// Github + ButtonWidget( + label: 'GitHub', + iconName: 'github', + url: 'https://github.com/testainers/check', + ), + + /// Web + // TODO(edufolly): https://check.testainers.com/ + ], + ), + SizedBox(height: 36), + ], + ), ), ), ); diff --git a/pubspec.lock b/pubspec.lock index 82aa62e..c5aba51 100644 --- a/pubspec.lock +++ b/pubspec.lock @@ -61,18 +61,10 @@ packages: dependency: transitive description: name: ffi - sha256: ed5337a5660c506388a9f012be0288fb38b49020ce2b45fe1f8b8323fe429f99 + sha256: "493f37e7df1804778ff3a53bd691d8692ddf69702cf4c1c1096a2e41b4779e21" url: "https://pub.dev" source: hosted - version: "2.0.2" - file: - dependency: transitive - description: - name: file - sha256: "1b92bec4fc2a72f59a8e15af5f52cd441e4a7860b49499d69dfa817af20e925d" - url: "https://pub.dev" - source: hosted - version: "6.1.4" + version: "2.1.2" flutter: dependency: "direct main" description: flutter @@ -82,10 +74,10 @@ packages: dependency: "direct dev" description: name: flutter_lints - sha256: e2a421b7e59244faef694ba7b30562e489c2b489866e505074eb005cd7060db7 + sha256: "3f41d009ba7172d5ff9be5f6e6e6abb4300e263aab8866d2a0842ed2a70f8f0c" url: "https://pub.dev" source: hosted - version: "3.0.1" + version: "4.0.0" flutter_test: dependency: "direct dev" description: flutter @@ -100,18 +92,18 @@ packages: dependency: "direct main" description: name: google_fonts - sha256: f0b8d115a13ecf827013ec9fc883390ccc0e87a96ed5347a3114cac177ef18e8 + sha256: b1ac0fe2832c9cc95e5e88b57d627c5e68c223b9657f4b96e1487aa9098c7b82 url: "https://pub.dev" source: hosted - version: "6.1.0" + version: "6.2.1" http: dependency: transitive description: name: http - sha256: "759d1a329847dd0f39226c688d3e06a6b8679668e350e2891a6474f8b4bb8525" + sha256: "761a297c042deedc1ffbb156d6e2af13886bb305c2a343a4d972504cd67dd938" url: "https://pub.dev" source: hosted - version: "1.1.0" + version: "1.2.1" http_parser: dependency: transitive description: @@ -120,118 +112,134 @@ packages: url: "https://pub.dev" source: hosted version: "4.0.2" + leak_tracker: + dependency: transitive + description: + name: leak_tracker + sha256: "7f0df31977cb2c0b88585095d168e689669a2cc9b97c309665e3386f3e9d341a" + url: "https://pub.dev" + source: hosted + version: "10.0.4" + leak_tracker_flutter_testing: + dependency: transitive + description: + name: leak_tracker_flutter_testing + sha256: "06e98f569d004c1315b991ded39924b21af84cf14cc94791b8aea337d25b57f8" + url: "https://pub.dev" + source: hosted + version: "3.0.3" + leak_tracker_testing: + dependency: transitive + description: + name: leak_tracker_testing + sha256: "6ba465d5d76e67ddf503e1161d1f4a6bc42306f9d66ca1e8f079a47290fb06d3" + url: "https://pub.dev" + source: hosted + version: "3.0.1" lints: dependency: transitive description: name: lints - sha256: cbf8d4b858bb0134ef3ef87841abdf8d63bfc255c266b7bf6b39daa1085c4290 + sha256: "976c774dd944a42e83e2467f4cc670daef7eed6295b10b36ae8c85bcbf828235" url: "https://pub.dev" source: hosted - version: "3.0.0" + version: "4.0.0" matcher: dependency: transitive description: name: matcher - sha256: "1803e76e6653768d64ed8ff2e1e67bea3ad4b923eb5c56a295c3e634bad5960e" + sha256: d2323aa2060500f906aa31a895b4030b6da3ebdcc5619d14ce1aada65cd161cb url: "https://pub.dev" source: hosted - version: "0.12.16" + version: "0.12.16+1" material_color_utilities: dependency: transitive description: name: material_color_utilities - sha256: "9528f2f296073ff54cb9fee677df673ace1218163c3bc7628093e7eed5203d41" + sha256: "0e0a020085b65b6083975e499759762399b4475f766c21668c4ecca34ea74e5a" url: "https://pub.dev" source: hosted - version: "0.5.0" + version: "0.8.0" meta: dependency: transitive description: name: meta - sha256: a6e590c838b18133bb482a2745ad77c5bb7715fb0451209e1a7567d416678b8e + sha256: "7687075e408b093f36e6bbf6c91878cc0d4cd10f409506f7bc996f68220b9136" url: "https://pub.dev" source: hosted - version: "1.10.0" + version: "1.12.0" path: dependency: transitive description: name: path - sha256: "8829d8a55c13fc0e37127c29fedf290c102f4e40ae94ada574091fe0ff96c917" + sha256: "087ce49c3f0dc39180befefc60fdb4acd8f8620e5682fe2476afd0b3688bb4af" url: "https://pub.dev" source: hosted - version: "1.8.3" + version: "1.9.0" path_provider: dependency: transitive description: name: path_provider - sha256: "3087813781ab814e4157b172f1a11c46be20179fcc9bea043e0fba36bc0acaa2" + sha256: c9e7d3a4cd1410877472158bee69963a4579f78b68c65a2b7d40d1a7a88bb161 url: "https://pub.dev" source: hosted - version: "2.0.15" + version: "2.1.3" path_provider_android: dependency: transitive description: name: path_provider_android - sha256: "2cec049d282c7f13c594b4a73976b0b4f2d7a1838a6dd5aaf7bd9719196bee86" + sha256: "9c96da072b421e98183f9ea7464898428e764bc0ce5567f27ec8693442e72514" url: "https://pub.dev" source: hosted - version: "2.0.27" + version: "2.2.5" path_provider_foundation: dependency: transitive description: name: path_provider_foundation - sha256: "1995d88ec2948dac43edf8fe58eb434d35d22a2940ecee1a9fefcd62beee6eb3" + sha256: f234384a3fdd67f989b4d54a5d73ca2a6c422fa55ae694381ae0f4375cd1ea16 url: "https://pub.dev" source: hosted - version: "2.2.3" + version: "2.4.0" path_provider_linux: dependency: transitive description: name: path_provider_linux - sha256: ffbb8cc9ed2c9ec0e4b7a541e56fd79b138e8f47d2fb86815f15358a349b3b57 + sha256: f7a1fe3a634fe7734c8d3f2766ad746ae2a2884abe22e241a8b301bf5cac3279 url: "https://pub.dev" source: hosted - version: "2.1.11" + version: "2.2.1" path_provider_platform_interface: dependency: transitive description: name: path_provider_platform_interface - sha256: "57585299a729335f1298b43245842678cb9f43a6310351b18fb577d6e33165ec" + sha256: "88f5779f72ba699763fa3a3b06aa4bf6de76c8e5de842cf6f29e2e06476c2334" url: "https://pub.dev" source: hosted - version: "2.0.6" + version: "2.1.2" path_provider_windows: dependency: transitive description: name: path_provider_windows - sha256: "1cb68ba4cd3a795033de62ba1b7b4564dace301f952de6bfb3cd91b202b6ee96" + sha256: "8bc9f22eee8690981c22aa7fc602f5c85b497a6fb2ceb35ee5a5e5ed85ad8170" url: "https://pub.dev" source: hosted - version: "2.1.7" + version: "2.2.1" platform: dependency: transitive description: name: platform - sha256: "4a451831508d7d6ca779f7ac6e212b4023dd5a7d08a27a63da33756410e32b76" + sha256: "12220bb4b65720483f8fa9450b4332347737cf8213dd2840d8b2c823e47243ec" url: "https://pub.dev" source: hosted - version: "3.1.0" + version: "3.1.4" plugin_platform_interface: dependency: transitive description: name: plugin_platform_interface - sha256: "6a2128648c854906c53fa8e33986fc0247a1116122f9534dd20e3ab9e16a32bc" - url: "https://pub.dev" - source: hosted - version: "2.1.4" - process: - dependency: transitive - description: - name: process - sha256: "53fd8db9cec1d37b0574e12f07520d582019cb6c44abf5479a01505099a34a09" + sha256: "4820fbfdb9478b1ebae27888254d445073732dae3d6ea81f0b7e06d5dedc3f02" url: "https://pub.dev" source: hosted - version: "4.2.4" + version: "2.1.8" sky_engine: dependency: transitive description: flutter @@ -281,10 +289,10 @@ packages: dependency: transitive description: name: test_api - sha256: "5c2f730018264d276c20e4f1503fd1308dfbbae39ec8ee63c5236311ac06954b" + sha256: "9955ae474176f7ac8ee4e989dadfb411a58c30415bcfb648fa04b2b8a03afa7f" url: "https://pub.dev" source: hosted - version: "0.6.1" + version: "0.7.0" typed_data: dependency: transitive description: @@ -297,26 +305,26 @@ packages: dependency: "direct main" description: name: url_launcher - sha256: c512655380d241a337521703af62d2c122bf7b77a46ff7dd750092aa9433499c + sha256: "6ce1e04375be4eed30548f10a315826fd933c1e493206eab82eed01f438c8d2e" url: "https://pub.dev" source: hosted - version: "6.2.4" + version: "6.2.6" url_launcher_android: dependency: transitive description: name: url_launcher_android - sha256: "507dc655b1d9cb5ebc756032eb785f114e415f91557b73bf60b7e201dfedeb2f" + sha256: ceb2625f0c24ade6ef6778d1de0b2e44f2db71fded235eb52295247feba8c5cf url: "https://pub.dev" source: hosted - version: "6.2.2" + version: "6.3.3" url_launcher_ios: dependency: transitive description: name: url_launcher_ios - sha256: "75bb6fe3f60070407704282a2d295630cab232991eb52542b18347a8a941df03" + sha256: "7068716403343f6ba4969b4173cbf3b84fc768042124bc2c011e5d782b24fe89" url: "https://pub.dev" source: hosted - version: "6.2.4" + version: "6.3.0" url_launcher_linux: dependency: transitive description: @@ -329,26 +337,26 @@ packages: dependency: transitive description: name: url_launcher_macos - sha256: b7244901ea3cf489c5335bdacda07264a6e960b1c1b1a9f91e4bc371d9e68234 + sha256: "9a1a42d5d2d95400c795b2914c36fdcb525870c752569438e4ebb09a2b5d90de" url: "https://pub.dev" source: hosted - version: "3.1.0" + version: "3.2.0" url_launcher_platform_interface: dependency: transitive description: name: url_launcher_platform_interface - sha256: "4aca1e060978e19b2998ee28503f40b5ba6226819c2b5e3e4d1821e8ccd92198" + sha256: "552f8a1e663569be95a8190206a38187b531910283c3e982193e4f2733f01029" url: "https://pub.dev" source: hosted - version: "2.3.0" + version: "2.3.2" url_launcher_web: dependency: transitive description: name: url_launcher_web - sha256: fff0932192afeedf63cdd50ecbb1bc825d31aed259f02bb8dba0f3b729a5e88b + sha256: "8d9e750d8c9338601e709cd0885f95825086bd8b642547f26bda435aade95d8a" url: "https://pub.dev" source: hosted - version: "2.2.3" + version: "2.3.1" url_launcher_windows: dependency: transitive description: @@ -365,30 +373,38 @@ packages: url: "https://pub.dev" source: hosted version: "2.1.4" + vm_service: + dependency: transitive + description: + name: vm_service + sha256: "3923c89304b715fb1eb6423f017651664a03bf5f4b29983627c4da791f74a4ec" + url: "https://pub.dev" + source: hosted + version: "14.2.1" web: dependency: transitive description: name: web - sha256: afe077240a270dcfd2aafe77602b4113645af95d0ad31128cc02bce5ac5d5152 + sha256: "97da13628db363c635202ad97068d47c5b8aa555808e7a9411963c533b449b27" url: "https://pub.dev" source: hosted - version: "0.3.0" + version: "0.5.1" win32: dependency: transitive description: name: win32 - sha256: dfdf0136e0aa7a1b474ea133e67cb0154a0acd2599c4f3ada3b49d38d38793ee + sha256: a79dbe579cb51ecd6d30b17e0cae4e0ea15e2c0e66f69ad4198f22a6789e94f4 url: "https://pub.dev" source: hosted - version: "5.0.5" + version: "5.5.1" xdg_directories: dependency: transitive description: name: xdg_directories - sha256: ee1505df1426458f7f60aac270645098d318a8b4766d85fde75f76f2e21807d1 + sha256: faea9dee56b520b55a566385b84f2e8de55e7496104adada9962e0bd11bcff1d url: "https://pub.dev" source: hosted - version: "1.0.0" + version: "1.0.4" sdks: - dart: ">=3.2.0 <4.0.0" - flutter: ">=3.16.0" + dart: ">=3.4.0 <4.0.0" + flutter: ">=3.22.0" diff --git a/pubspec.yaml b/pubspec.yaml index 3e5a08f..02e26f0 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -3,10 +3,10 @@ description: Testainers site publish_to: 'none' # Remove this line if you wish to publish to pub.dev -version: 0.0.1+3 +version: 0.0.2+4 environment: - sdk: '>=3.0.0 <4.0.0' + sdk: '>=3.4.0 <4.0.0' dependencies: flutter: @@ -16,14 +16,14 @@ dependencies: # sdk: flutter # https://pub.dev/packages/google_fonts - google_fonts: 6.1.0 + google_fonts: 6.2.1 # https://pub.dev/packages/url_launcher - url_launcher: 6.2.4 + url_launcher: 6.2.6 dev_dependencies: # https://pub.dev/packages/flutter_lints - flutter_lints: ^3.0.0 + flutter_lints: ^4.0.0 flutter_test: sdk: flutter diff --git a/web/index.html b/web/index.html index 033a4c8..f564844 100644 --- a/web/index.html +++ b/web/index.html @@ -1,60 +1,26 @@ - + - - - - - - - - - - - - + + + + + - testainers - - - - - + testainers + - - + +