49 lines
1.5 KiB
Dart
49 lines
1.5 KiB
Dart
import 'dart:collection';
|
|
|
|
import 'package:aves/services/android_debug_service.dart';
|
|
import 'package:aves/widgets/common/identity/aves_expansion_tile.dart';
|
|
import 'package:aves/widgets/viewer/info/common.dart';
|
|
import 'package:flutter/material.dart';
|
|
|
|
class DebugAndroidDirSection extends StatefulWidget {
|
|
const DebugAndroidDirSection({super.key});
|
|
|
|
@override
|
|
State<DebugAndroidDirSection> createState() => _DebugAndroidDirSectionState();
|
|
}
|
|
|
|
class _DebugAndroidDirSectionState extends State<DebugAndroidDirSection> with AutomaticKeepAliveClientMixin {
|
|
late Future<Map> _loader;
|
|
|
|
@override
|
|
void initState() {
|
|
super.initState();
|
|
_loader = AndroidDebugService.getContextDirs();
|
|
}
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
super.build(context);
|
|
|
|
return AvesExpansionTile(
|
|
title: 'Android Dirs',
|
|
children: [
|
|
Padding(
|
|
padding: const EdgeInsets.only(left: 8, right: 8, bottom: 8),
|
|
child: FutureBuilder<Map>(
|
|
future: _loader,
|
|
builder: (context, snapshot) {
|
|
if (snapshot.hasError) return Text(snapshot.error.toString());
|
|
if (snapshot.connectionState != ConnectionState.done) return const SizedBox();
|
|
final data = SplayTreeMap.of(snapshot.data!.map((k, v) => MapEntry(k.toString(), v?.toString() ?? 'null')));
|
|
return InfoRowGroup(info: data);
|
|
},
|
|
),
|
|
),
|
|
],
|
|
);
|
|
}
|
|
|
|
@override
|
|
bool get wantKeepAlive => true;
|
|
}
|