data_save 0.3.3 copy "data_save: ^0.3.3" to clipboard
data_save: ^0.3.3 copied to clipboard

Platformweb

datasave for flutter and flutter web

example/lib/main.dart

import 'package:flutter/material.dart';


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

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

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

class _MyAppState extends State<MyApp> {
  String _platformVersion = 'Unknown';

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



  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: const Text('Plugin example app'),
        ),
        body: Center(
          child: Text('Running on: $_platformVersion\n'),
        ),
      ),
    );
  }
}
2
likes
130
points
43
downloads

Publisher

unverified uploader

Weekly Downloads

datasave for flutter and flutter web

Repository (GitHub)
View/report issues

Documentation

API reference

License

BSL-1.0 (license)

Dependencies

flutter, flutter_web_plugins, plugin_platform_interface, shared_preferences

More

Packages that depend on data_save