Browse Source

show activity history

master
daivph 5 years ago
parent
commit
efc6103e26
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      lib/presentation/screens/plot_detail/sc_plot_action.dart

+ 2
- 2
lib/presentation/screens/plot_detail/sc_plot_action.dart View File

@@ -1,6 +1,5 @@
import 'package:farm_tpf/custom_model/CropPlot.dart';
import 'package:farm_tpf/data/repository/repository.dart';
import 'package:farm_tpf/models/index.dart';
import 'package:farm_tpf/presentation/custom_widgets/bottom_loader.dart';
import 'package:farm_tpf/presentation/custom_widgets/loading_list_page.dart';
import 'package:farm_tpf/presentation/screens/actions/other/sc_edit_action_other.dart';
@@ -250,7 +249,8 @@ class ItemInfinityWidget extends StatelessWidget {
return GestureDetector(
child: Card(
child: ListTile(
title: Text(item.activityTypeName),
//TODO: Update actitivy name from Api
title: Text(item.activityTypeName.toString()),
subtitle: Text(item.executeDate.format_DDMMYY_HHmm()),
),
),

Loading…
Cancel
Save