Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Message in readme #387

Merged
merged 2 commits into from
Oct 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,10 @@ Have a bug or a feature request? Please first search for existing and closed iss

Please read through our [contributing guidelines](https://github.com/Orange-OpenSource/ods-flutter/blob/main/CONTRIBUTING.md). Included are directions for opening issues, coding standards, and notes on development.

## Project Temporarily Archived

This project has been archived and is no longer actively maintained. No further updates, bug fixes, or support will be provided. For the time being, this project will remain in its archived state. While it may still offer value, we recommend exploring other solutions or alternatives for ongoing support and updates

## Copyright and license

Code released under the [MIT License](https://github.com/Orange-OpenSource/ods-flutter/blob/main/LICENSE).
5 changes: 2 additions & 3 deletions app/lib/ui/about/detail/about_file_screen.dart
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
* Software description: Flutter library of reusable graphical components for Android and iOS
*/

import 'dart:convert';
import 'dart:io';

import 'package:flutter/foundation.dart';
Expand All @@ -18,6 +19,7 @@ import 'package:flutter/services.dart';
import 'package:markdown/markdown.dart' as md;
import 'package:ods_flutter/components/app_bar/top/ods_top_app_bar.dart';
import 'package:path/path.dart' as path;
import 'package:webview_flutter/webview_flutter.dart';

class OdsAboutFileScreen extends StatelessWidget {
final String title;
Expand All @@ -40,7 +42,6 @@ class OdsAboutFileScreen extends StatelessWidget {
title: title,
navigationIcon: BackButton(),
),
/*
body: SafeArea(
child: FutureBuilder(
future: _loadFileData(),
Expand Down Expand Up @@ -74,8 +75,6 @@ class OdsAboutFileScreen extends StatelessWidget {
},
),
),

*/
);
}

Expand Down
16 changes: 8 additions & 8 deletions app/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -682,34 +682,34 @@ packages:
dependency: "direct main"
description:
name: webview_flutter
sha256: ec81f57aa1611f8ebecf1d2259da4ef052281cb5ad624131c93546c79ccc7736
sha256: "392c1d83b70fe2495de3ea2c84531268d5b8de2de3f01086a53334d8b6030a88"
url: "https://pub.dev"
source: hosted
version: "4.9.0"
version: "3.0.4"
webview_flutter_android:
dependency: transitive
description:
name: webview_flutter_android
sha256: ed021f27ae621bc97a6019fb601ab16331a3db4bf8afa305e9f6689bdb3edced
sha256: "8b3b2450e98876c70bfcead876d9390573b34b9418c19e28168b74f6cb252dbd"
url: "https://pub.dev"
source: hosted
version: "3.16.8"
version: "2.10.4"
webview_flutter_platform_interface:
dependency: transitive
description:
name: webview_flutter_platform_interface
sha256: d937581d6e558908d7ae3dc1989c4f87b786891ab47bb9df7de548a151779d8d
sha256: "812165e4e34ca677bdfbfa58c01e33b27fd03ab5fa75b70832d4b7d4ca1fa8cf"
url: "https://pub.dev"
source: hosted
version: "2.10.0"
version: "1.9.5"
webview_flutter_wkwebview:
dependency: transitive
description:
name: webview_flutter_wkwebview
sha256: "1942a12224ab31e9508cf00c0c6347b931b023b8a4f0811e5dec3b06f94f117d"
sha256: a5364369c758892aa487cbf59ea41d9edd10f9d9baf06a94e80f1bd1b4c7bbc0
url: "https://pub.dev"
source: hosted
version: "3.15.0"
version: "2.9.5"
win32:
dependency: transitive
description:
Expand Down
2 changes: 1 addition & 1 deletion app/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ dependencies:

# Read markdown.
markdown: ^7.1.1
webview_flutter: ^4.2.2
webview_flutter: ^3.0.4
url_launcher: ^6.0.3

dev_dependencies:
Expand Down
Loading