File tree 2 files changed +5
-6
lines changed
2 files changed +5
-6
lines changed Original file line number Diff line number Diff line change
1
+ import 'package:fastotv_dart/commands_info/programme_info.dart' ;
1
2
import 'package:fastotvlite/base/focusable/actions.dart' ;
2
3
import 'package:fastotvlite/base/streams/live_timeline.dart' ;
3
4
import 'package:fastotvlite/base/streams/program_bloc.dart' ;
@@ -18,7 +19,6 @@ import 'package:fastotvlite/shared_prefs.dart';
18
19
import 'package:fastotvlite/theme/theme.dart' ;
19
20
import 'package:fastotvlite/tv/streams/common_widgets.dart' ;
20
21
import 'package:fastotvlite/tv/streams/tv_live_channels.dart' ;
21
- import 'package:fastotv_dart/commands_info/programme_info.dart' ;
22
22
import 'package:fastotvlite/tv/streams/tv_live_edit_channel.dart' ;
23
23
import 'package:flutter/material.dart' ;
24
24
import 'package:flutter/services.dart' ;
@@ -529,9 +529,8 @@ class _ProgramDescription extends StatelessWidget {
529
529
builder: (context, snapshot) {
530
530
if (snapshot.hasData) {
531
531
final ProgrammeInfo p = snapshot.data;
532
- if (p.description.isPresent) {
533
- return SingleChildScrollView (
534
- child: Text (AppLocalizations .toUtf8 (p.description.value)));
532
+ if (p.description != null ) {
533
+ return SingleChildScrollView (child: Text (AppLocalizations .toUtf8 (p.description)));
535
534
}
536
535
}
537
536
return const SizedBox ();
Original file line number Diff line number Diff line change @@ -15,12 +15,12 @@ environment:
15
15
dependencies :
16
16
event_bus : ^2.0.0
17
17
flutter_tags : ^0.4.9+1
18
+ file_picker : ^3.0.0
18
19
get_it : ^6.0.0
19
20
numberpicker : ^2.0.0
20
- shared_preferences : ^2.0.3
21
+ shared_preferences : ^2.0.4
21
22
unicorndial : ^1.1.5
22
23
uuid : 3.0.1
23
- file_picker : ^3.0.0
24
24
flutter_localizations :
25
25
sdk : flutter
26
26
flutter :
You can’t perform that action at this time.
0 commit comments