Skip to content

Commit

Permalink
updated from intl to 0.19.0 (#386)
Browse files Browse the repository at this point in the history
fix : update dependencies to make tests pass
  • Loading branch information
Tayebsed93 authored Oct 1, 2024
1 parent 6240e4b commit 0abc407
Show file tree
Hide file tree
Showing 7 changed files with 200 additions and 162 deletions.
2 changes: 1 addition & 1 deletion .github/actions/setup/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ runs:
uses: actions/setup-java@v3
with:
distribution: 'zulu'
java-version: '11'
java-version: '17'

- name: Setup Flutter
uses: subosito/flutter-action@v2
Expand Down
5 changes: 3 additions & 2 deletions app/lib/ui/about/detail/about_file_screen.dart
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
* 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 @@ -19,7 +18,6 @@ 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 @@ -42,6 +40,7 @@ class OdsAboutFileScreen extends StatelessWidget {
title: title,
navigationIcon: BackButton(),
),
/*
body: SafeArea(
child: FutureBuilder(
future: _loadFileData(),
Expand Down Expand Up @@ -75,6 +74,8 @@ class OdsAboutFileScreen extends StatelessWidget {
},
),
),
*/
);
}

Expand Down
Loading

0 comments on commit 0abc407

Please sign in to comment.