enif 0.1.3 copy "enif: ^0.1.3" to clipboard
enif: ^0.1.3 copied to clipboard

outdated

Automate business operations, boost business growth and increase customer satisfaction with streamlined automation.

Automate business operations, boost business growth and increase customer satisfaction with streamlined automation.

Get Started

Try a demo

Features #

Knowledge Base

Getting started #

Head to Enif Website to create an account.

Usage #

Check the example folder for demo.

Initialize your business ID

void main() async {
  WidgetsFlutterBinding.ensureInitialized();
 EnifController.setBusinessId("YOUR_BUSINESS_ID");

  runApp(const MyApp());
}

you can set user params to automatically login user
EnifController.setUser(EnifUserParams(
      firstName: "Sade",
      lastName: "Oluchi",
      phoneNo: "0803000000",
      email: "sade@enif.com"));


class MyApp extends StatelessWidget {
  const MyApp({super.key});

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      debugShowCheckedModeBanner: false,
      title: 'Enif Chat Bot',
      themeMode: ThemeMode.system,
      theme: ThemeData.light(),
      darkTheme: ThemeData.dark(),
      home: const EnifHome(showBackButton: false),
    );
  }
}

Additional information #

3
likes
0
points
17
downloads

Publisher

unverified uploader

Weekly Downloads

Automate business operations, boost business growth and increase customer satisfaction with streamlined automation.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

data_repository, flutter, flutter_animate, flutter_html, flutter_svg, shared_preferences

More

Packages that depend on enif