39 lines
915 B
Dart
39 lines
915 B
Dart
import 'package:didvan/constants/assets.dart';
|
|
import 'package:didvan/models/radar_category.dart';
|
|
import 'package:didvan/providers/core_provider.dart';
|
|
|
|
class RadarState extends CoreProvier {
|
|
final List<RadarCategory> categories = [
|
|
RadarCategory(
|
|
id: 1,
|
|
title: 'افتصادی',
|
|
asset: Assets.economicCategoryIcon,
|
|
),
|
|
RadarCategory(
|
|
id: 2,
|
|
title: 'سیاسی',
|
|
asset: Assets.politicalCategoryIcon,
|
|
),
|
|
RadarCategory(
|
|
id: 3,
|
|
title: 'فناوری',
|
|
asset: Assets.techCategoryIcon,
|
|
),
|
|
RadarCategory(
|
|
id: 4,
|
|
title: 'کسب و کار',
|
|
asset: Assets.businessCategoryIcon,
|
|
),
|
|
RadarCategory(
|
|
id: 5,
|
|
title: 'زیست محیطی',
|
|
asset: Assets.enviromentalCategoryIcon,
|
|
),
|
|
RadarCategory(
|
|
id: 6,
|
|
title: 'اجتماعی',
|
|
asset: Assets.socialCategoryIcon,
|
|
),
|
|
];
|
|
}
|