faqsandmanual

 avatar
unknown
dart
5 months ago
9.0 kB
0
Indexable
import 'package:flutter/material.dart';
import '../../../../core/common/widgets/app_bar_core.dart';
import '../../../../core/res/colours.dart';
import '../widgets/custom_faq_expansion_tile.dart';
import '../widgets/profile_subtitle.dart';

class FaqAndManualScreen extends StatefulWidget {
  const FaqAndManualScreen({super.key});

  static const routeName = '/faq-and-manual';

  @override
  State<FaqAndManualScreen> createState() => _FaqAndManualScreenState();
}

class _FaqAndManualScreenState extends State<FaqAndManualScreen> {
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: const AppBarCore(
        title: 'FAQs & Manuals',
        centerTitle: true,
        isBackButton: true,
      ),
      body: Container(
        color: Colors.white,
        child: const SafeArea(
          child: SingleChildScrollView(
            child: Center(
              child: Column(
                children: [
                  CustomFaqExpansionTile(
                    title: "What is Parking+ ?",
                    description:
                        "Parking+ is a leading electric vehicle (EV) Charge Point Operator (CPO) in Indonesia and also an Electric Mobility Service Provider (EMSP). This is the first service-based Public Electric Vehicle Generating Station (SPKLU) in Indonesia, providing the most sustainable charging ecosystem, with hundreds of charging locations. We design, build and support all the technology that powers this ecosystem, from charging station hardware to energy management software to mobile applications. Together, we aim to create a healthier ecosystem, which supports the progress of civilization in Indonesia and the world.",
                    topPadding: 30.0,
                    expanded: true,
                  ),
                  SizedBox(height: 10),
                  Padding(
                    padding: EdgeInsets.only(left: 20),
                    child: ProfileSubtitle(
                      text: 'Use of Our Services',
                      textColor: Colours.secondaryColour,
                    ),
                  ),
                  CustomFaqExpansionTile(
                    title: "Haven’t received verification email",
                    description:
                        'Check the "spam" folder and search for "Parking+" in the search bar. If you still can\'t find the email, please contact our customer service: call +62 8119009563 or send an email to support@parkingplus.xyz.',
                    topPadding: 10.0,
                    expanded: false,
                  ),
                  CustomFaqExpansionTile(
                    title: "Haven’t received verification SMS",
                    description:
                        'If you have not received the SMS, please contact our customer service: call +62 8119009563 or send an email to support@parkingplus.xyz.',
                    topPadding: 10.0,
                    expanded: false,
                  ),
                  CustomFaqExpansionTile(
                    title: "Can't open the application",
                    description:
                        'Check if you have received the verification email or click "Forgot password" and enter the email address you registered with, and you will receive an email with a link to set a new password.',
                    topPadding: 10.0,
                    expanded: false,
                  ),
                  CustomFaqExpansionTile(
                    title: "I forgot my password",
                    description:
                        'If you forgot your password, you can request a new one by clicking "Forgot password". You will be directed to a page where you can set a new password.',
                    topPadding: 10.0,
                    expanded: false,
                  ),
                  CustomFaqExpansionTile(
                    title: "Account blocked",
                    description:
                        'If your account is blocked, please contact our customer service: call +62 8119009563 or send an email to support@parkingplus.xyz.',
                    topPadding: 10.0,
                    expanded: false,
                  ),
                  SizedBox(height: 10),
                  Padding(
                    padding: EdgeInsets.only(left: 20),
                    child: ProfileSubtitle(
                      text: 'About Payment & Charging Electric Vehicles',
                      textColor: Colours.secondaryColour,
                    ),
                  ),
                  CustomFaqExpansionTile(
                    title: 'How to pay for the charging service?',
                    description:
                        'Payments are made through a Payment Gateway, which includes Gopay, OVO, or Linkaja. This way, you can avoid the hassle of using cash. In addition to the payment gateway, we also provide payment options through credit cards, and soon you will be able to pay with electronic money cards.\n\n'
                        'There are a few issues to consider:\n\n'
                        'Make sure you have enough balance for the charging session, and do not use that balance for other purposes while charging. To ensure the payment process during charging, make sure your phone is connected to the internet. You will be responsible for any detected fraudulent payments. Your balance in the payment gateway will fully comply with the applicable payment gateway regulations.',
                    topPadding: 10.0,
                    expanded: false,
                  ),
                  CustomFaqExpansionTile(
                    title:
                        'Steps Required to Charge Your Electric Vehicle (EV)',
                    description:
                        'There are 4 steps to start charging your Electric Vehicle: Preparation Step, Start Charging Step, Charging Process Step, and Charging Completion.\n'
                        'For more information, you can find it on the Application Usage page.',
                    topPadding: 10.0,
                    expanded: false,
                  ),
                  CustomFaqExpansionTile(
                    title: "What if all the charging spots are occupied?",
                    description:
                        'You need to wait until a car finishes charging and moves. As a courtesy, our staff will contact the users of the cars that have finished charging to move their vehicles as soon as charging is complete.',
                    topPadding: 10.0,
                    expanded: false,
                  ),
                  CustomFaqExpansionTile(
                    title: 'Why are Parking+ notifications important?',
                    description:
                        'Notifications help you stay informed about the status of your electric vehicle charging at all times. You can set up mobile and email notifications for:\n'
                        '• When your car is fully charged.\n'
                        '• When the charging is interrupted.\n'
                        '• When the power to your car decreases.\n'
                        '• For status updates and reminders for charging station reservations.\n'
                        '• Payment information and other offers.',
                    topPadding: 10.0,
                    expanded: false,
                  ),
                  CustomFaqExpansionTile(
                    title: 'What types of vehicles can use Parking+?',
                    description:
                        'Parking+ fully supports all types of electric vehicles, including Tesla, BMW, Mercedes-Benz, BYD, Toyota, Hyundai, Kia, Wuling, Mitsubishi, Lexus, and many more. As we aim to create a shared charging ecosystem, we only use the most efficient, ergonomic, and safe chargers.',
                    topPadding: 10.0,
                    expanded: false,
                  ),
                  CustomFaqExpansionTile(
                    title: "Location",
                    description:
                        'In the Parking+ app, you can find the nearest charging locations from your location. In the Parking+ app, select the "Chargers" menu, then choose "Map" and enter the address or name of the place where you want to find the nearest charging location. The app will display the nearest charging locations and provide directions to get there. You can contact us if you would like to request your city through our Call Center at +62 8119009563, or you can send an email to support@parkingplus.xyz.',
                    topPadding: 10.0,
                    expanded: false,
                  ),
                  Padding(
                    padding: EdgeInsets.all(10),
                  )
                ],
              ),
            ),
          ),
        ),
      ),
    );
  }
}
Editor is loading...
Leave a Comment