whatsapp_bot_flutter 0.0.1 copy "whatsapp_bot_flutter: ^0.0.1" to clipboard
whatsapp_bot_flutter: ^0.0.1 copied to clipboard

Whatsapp bot using whatsapp web scrapping

example/lib/main.dart

import 'package:flex_color_scheme/flex_color_scheme.dart';
import 'package:flutter/material.dart';
import 'package:get/get.dart';
import 'app/routes/app_pages.dart';

void main() {
  runApp(
    GetMaterialApp(
      debugShowCheckedModeBanner: false,
      title: "Whatsapp Bot",
      initialRoute: AppPages.INITIAL,
      getPages: AppPages.routes,
      theme: FlexThemeData.light(
        scheme: FlexScheme.dellGenoa,
        useMaterial3: true,
        appBarElevation: 15,
      ),
    ),
  );
}