solid_encrypt 0.1.10 solid_encrypt: ^0.1.10 copied to clipboard
A data encryption library which can be used to encrypt the content in turtle files stored in Solid PODs.
// Flutter imports:
import 'package:flutter/material.dart';
// Project imports:
import 'package:fluttersolidencrypt/screens/LoginScreen.dart';
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
// This widget is the root of the application.
@override
Widget build(BuildContext context) {
return MaterialApp(
debugShowCheckedModeBanner: false,
title: 'Flutter Solid Authentication',
theme: ThemeData(),
home: LoginScreen(),
);
}
}