flutter_smartlook 4.1.17 copy "flutter_smartlook: ^4.1.17" to clipboard
flutter_smartlook: ^4.1.17 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(),
        ),
      );
    });
  }
}
43
likes
0
pub points
96%
popularity

Publisher

verified publishersmartlook.com

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

Homepage

License

unknown (license)

Dependencies

flutter, flutter_localizations, vector_math

More

Packages that depend on flutter_smartlook