running formatter
This commit is contained in:
@@ -41,7 +41,9 @@ class _MyHomePageState extends State<MyHomePage> {
|
||||
body: Center(
|
||||
child: _loading
|
||||
? CircularProgressIndicator()
|
||||
: _file == null ? Text('No File Selected') : _buildFile(_file),
|
||||
: _file == null
|
||||
? Text('No File Selected')
|
||||
: _buildFile(_file),
|
||||
),
|
||||
persistentFooterButtons: <Widget>[
|
||||
IconButton(
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
library file_access;
|
||||
|
||||
export 'src/classes/file/file.dart';
|
||||
export 'src/pick_file/pick_file.dart';
|
||||
export 'src/pick_file/pick_file.dart';
|
||||
|
||||
Reference in New Issue
Block a user