2024-08-12 02:17:57 +00:00
|
|
|
import 'package:english_learning/features/onboarding/models/onboarding_model.dart';
|
|
|
|
|
|
|
|
|
|
class OnBoardingData {
|
|
|
|
|
List<OnBoardingModel> onBoardingData = [
|
|
|
|
|
OnBoardingModel(
|
2024-10-10 05:49:33 +00:00
|
|
|
title: 'Interactive Lessons',
|
2024-08-12 02:17:57 +00:00
|
|
|
description:
|
2024-10-10 05:49:33 +00:00
|
|
|
'Customize your learning experience at a speed that suits you best.',
|
2024-08-12 02:17:57 +00:00
|
|
|
image: 'lib/features/onboarding/assets/images/onboarding1.png',
|
|
|
|
|
imageWidth: 250,
|
|
|
|
|
imageHeight: 250,
|
|
|
|
|
),
|
|
|
|
|
OnBoardingModel(
|
|
|
|
|
title: 'Tailored to You',
|
|
|
|
|
description:
|
2024-10-10 05:49:33 +00:00
|
|
|
'We ready to support you every step of your English learning journey',
|
2024-08-12 02:17:57 +00:00
|
|
|
image: 'lib/features/onboarding/assets/images/onboarding2.png',
|
|
|
|
|
imageWidth: 250,
|
|
|
|
|
imageHeight: 201.17,
|
|
|
|
|
),
|
|
|
|
|
OnBoardingModel(
|
|
|
|
|
title: 'Adaptive Learning',
|
|
|
|
|
description:
|
2024-10-10 05:49:33 +00:00
|
|
|
'Together, we achive more, Start your personalized learning journey with us today!',
|
2024-08-12 02:17:57 +00:00
|
|
|
image: 'lib/features/onboarding/assets/images/onboarding3.png',
|
|
|
|
|
imageWidth: 250,
|
|
|
|
|
imageHeight: 221.56,
|
|
|
|
|
),
|
|
|
|
|
];
|
|
|
|
|
}
|