splunk_otel_flutter_session_replay 1.0.1 copy "splunk_otel_flutter_session_replay: ^1.0.1" to clipboard
splunk_otel_flutter_session_replay: ^1.0.1 copied to clipboard

Session replay module for Splunk OpenTelemetry Flutter. Captures and replays user sessions for debugging and analytics.

example/lib/main.dart

/*
 * Copyright 2025 Splunk Inc.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

import 'package:flutter/material.dart';

//import 'package:splunk_otel_flutter_session_replay/splunk_otel_flutter_session_replay.dart';

void main() {
  runApp(const MyApp());
}

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

  @override
  State<MyApp> createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {
  //final _splunkOtelFlutterSessionReplayPlugin = SplunkOtelFlutterSessionReplay();

  @override
  void initState() {
    super.initState();
  }


  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: const Text('Plugin example app'),
        ),
        body: const Center(
          child: Text('Running on:'),
        ),
      ),
    );
  }
}