We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dbbc9fb commit ccfa694Copy full SHA for ccfa694
packages/smooth_app/lib/pages/prices/price_data_widget.dart
@@ -29,11 +29,11 @@ class PriceDataWidget extends StatelessWidget {
29
30
final DateFormat timeFormat = DateFormat('HH:mm');
31
32
+ final DateTime created = price.created.toLocal();
33
final String date = MaterialLocalizations.of(
34
context,
- ).formatCompactDate(price.created);
35
- final String time = timeFormat.format(price.created);
36
-
+ ).formatCompactDate(created);
+ final String time = timeFormat.format(created);
37
final SmoothColorsThemeExtension extension = context
38
.extension<SmoothColorsThemeExtension>();
39
final bool lightTheme = context.lightTheme();
0 commit comments