File tree Expand file tree Collapse file tree 2 files changed +12
-11
lines changed Expand file tree Collapse file tree 2 files changed +12
-11
lines changed Original file line number Diff line number Diff line change 2
2
<p align =" center " ><img width =" 10% " vspace =" 10 " src =" https://github.com/StringCare/stringcare/raw/master/images/ic_launcher/res/mipmap-xxxhdpi/ic_launcher.png " ></p >
3
3
4
4
<h2 align =" center " style =" margin-bottom :30px " vspace =" 20 " >Stringcare Flutter</h2 >
5
- <p align =" center " ><a href =" https://landa-app .com/ " >Land-a dependency</a ></p >
5
+ <p align =" center " ><a href =" https://landamessenger .com/ " >A Landa dependency</a ></p >
6
6
7
7
Flutter plugin for encrypt/decrypt ` String ` and ` Uint8List ` objects easily with C++ code.
8
8
Original file line number Diff line number Diff line change 1
- import 'package:path/path.dart' ;
2
- import 'package:yaml/yaml.dart' ;
3
1
import 'dart:async' ;
4
2
import 'dart:convert' ;
5
3
import 'dart:io' ;
6
- import 'package:stringcare/src/compile/stringcare_impl.dart' ;
4
+ import 'dart:typed_data' ;
5
+
6
+ import 'package:path/path.dart' ;
7
7
import 'package:stringcare/src/compile/c_helper.dart' as helper;
8
8
import 'package:stringcare/src/compile/exceptions.dart' ;
9
- import 'dart:typed_data' ;
9
+ import 'package:stringcare/src/compile/stringcare_impl.dart' ;
10
+ import 'package:yaml/yaml.dart' ;
10
11
11
12
String get slash {
12
13
if (Platform .isWindows) return '\\ ' ;
@@ -318,21 +319,21 @@ void buildRFile(
318
319
///
319
320
320
321
// ignore_for_file: non_constant_identifier_names
321
- class _Assets {
322
- _Assets ();
322
+ class Assets {
323
+ Assets ();
323
324
324
325
$assetsContent
325
326
}
326
327
327
- class _Strings {
328
- _Strings ();
328
+ class Strings {
329
+ Strings ();
329
330
330
331
$langsContent
331
332
}
332
333
333
334
class $className {
334
- static _Assets assets = _Assets ();
335
- static _Strings strings = _Strings ();
335
+ static Assets assets = Assets ();
336
+ static Strings strings = Strings ();
336
337
}
337
338
''' ;
338
339
You can’t perform that action at this time.
0 commit comments