findversion 0.0.1 copy "findversion: ^0.0.1" to clipboard
findversion: ^0.0.1 copied to clipboard

A new flutter library to find the os version

example/example.dart

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

class example extends StatefulWidget {
  const example({Key key}) : super(key: key);

  @override
  _FindOsVersionState createState() => _FindOsVersionState();
}

class _FindOsVersionState extends State<example> {

  String os_version = "Na";
  @override
  Widget build(BuildContext context) {
    return Container(
      child: Text("This device os will be displayed here...."),
    );
  }

}
0
likes
30
pub points
0%
popularity

Publisher

unverified uploader

A new flutter library to find the os version

Repository (GitHub)
View/report issues

License

MIT (LICENSE)

Dependencies

flutter

More

Packages that depend on findversion