String simpleDate(int timestamp) { DateTime date = DateTime.fromMillisecondsSinceEpoch(timestamp); return "${date.day} ${shortMonths[date.month]}, ${date.year}"; }