ironsource_adpluginx 1.0.0 copy "ironsource_adpluginx: ^1.0.0" to clipboard
ironsource_adpluginx: ^1.0.0 copied to clipboard

outdated

Forked For AdpluginX

example/lib/main.dart

import 'package:flutter/material.dart';
import './app_screen.dart';

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

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return const MaterialApp(home: AppScreen());
  }
}