flutter_smartlook 4.1.25 copy "flutter_smartlook: ^4.1.25" to clipboard
flutter_smartlook: ^4.1.25 copied to clipboard

Smartlook SDK wrapper for Flutter. Analyze user behavior in ways never possible before.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:flutter_smartlook/flutter_smartlook.dart';
import 'package:flutter_smartlook_example/initial_screen.dart';
import 'package:sizer/sizer.dart';

void main() {
  WidgetsFlutterBinding.ensureInitialized();

  runApp(const CiscoSmartlookApp());
}

class CiscoSmartlookApp extends StatelessWidget {
  const CiscoSmartlookApp();

  @override
  Widget build(BuildContext context) {
    return Sizer(builder: (context, orientation, deviceType) {
      return SmartlookRecordingWidget(
        child: MaterialApp(
          debugShowCheckedModeBanner: false,
          //  navigatorObservers: [SmartlookObserver()],
          home: InitialScreen(),
        ),
      );
    });
  }
}
44
likes
130
points
26.2k
downloads

Publisher

verified publishersmartlook.com

Weekly Downloads

Smartlook SDK wrapper for Flutter. Analyze user behavior in ways never possible before.

Homepage

Documentation

API reference

License

unknown (license)

Dependencies

flutter, flutter_localizations, vector_math

More

Packages that depend on flutter_smartlook