feat: dpi responsive layout (#361)

This commit is contained in:
BrentBoyMeBob 2023-08-03 14:38:38 -07:00 committed by GitHub
parent d3790bf64b
commit fe75b75ddc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 146 additions and 128 deletions

View file

@ -31,6 +31,8 @@ class InstallerView extends StatelessWidget {
style: GoogleFonts.inter(
color: Theme.of(context).textTheme.titleLarge!.color,
),
maxLines: 1,
overflow: TextOverflow.ellipsis,
),
onBackButtonPressed: () => model.onWillPop(context),
actions: <Widget>[

View file

@ -62,13 +62,17 @@ class _PatchesSelectorViewState extends State<PatchesSelectorView> {
onPressed: () => Navigator.of(context).pop(),
),
actions: [
Container(
FittedBox(
fit: BoxFit.scaleDown,
child: Container(
margin: const EdgeInsets.only(top: 12, bottom: 12),
padding:
const EdgeInsets.symmetric(horizontal: 6, vertical: 6),
decoration: BoxDecoration(
color:
Theme.of(context).colorScheme.tertiary.withOpacity(0.5),
color: Theme.of(context)
.colorScheme
.tertiary
.withOpacity(0.5),
borderRadius: BorderRadius.circular(6),
),
child: Text(
@ -78,6 +82,7 @@ class _PatchesSelectorViewState extends State<PatchesSelectorView> {
),
),
),
),
CustomPopupMenu(
onSelected: (value) => {model.onMenuSelection(value)},
children: {

View file

@ -70,7 +70,7 @@ class _InstalledAppItemState extends State<InstalledAppItem> {
},
),
),
Row(
Wrap(
children: [
I18nText(
'suggested',
@ -84,8 +84,7 @@ class _InstalledAppItemState extends State<InstalledAppItem> {
},
),
const SizedBox(width: 4),
Flexible(
child: Text(
Text(
widget.patchesCount == 1
? '${widget.patchesCount} patch'
: '${widget.patchesCount} patches',
@ -95,7 +94,6 @@ class _InstalledAppItemState extends State<InstalledAppItem> {
color: Theme.of(context).colorScheme.secondary,
),
),
),
],
),
],

View file

@ -64,7 +64,7 @@ class _NotInstalledAppItem extends State<NotInstalledAppItem> {
),
),
),
Row(
Wrap(
children: [
I18nText(
'suggested',
@ -78,8 +78,7 @@ class _NotInstalledAppItem extends State<NotInstalledAppItem> {
},
),
const SizedBox(width: 4),
Flexible(
child: Text(
Text(
widget.patchesCount == 1
? '${widget.patchesCount} patch'
: '${widget.patchesCount} patches',
@ -89,7 +88,6 @@ class _NotInstalledAppItem extends State<NotInstalledAppItem> {
color: Theme.of(context).colorScheme.secondary,
),
),
),
],
),
],

View file

@ -30,21 +30,18 @@ class _LatestCommitCardState extends State<LatestCommitCard> {
child: Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: <Widget>[
Column(
Expanded(
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: <Widget>[
const Row(
children: <Widget>[
Text('ReVanced Manager'),
],
),
const Text('ReVanced Manager'),
const SizedBox(height: 4),
Row(
children: <Widget>[
FutureBuilder<String?>(
future: model.getLatestManagerReleaseTime(),
builder: (context, snapshot) =>
snapshot.hasData && snapshot.data!.isNotEmpty
builder: (context, snapshot) => snapshot.hasData &&
snapshot.data!.isNotEmpty
? I18nText(
'latestCommitCard.timeagoLabel',
translationParams: {'time': snapshot.data!},
@ -55,6 +52,7 @@ class _LatestCommitCardState extends State<LatestCommitCard> {
),
],
),
),
FutureBuilder<bool>(
future: model.hasManagerUpdates(),
initialData: false,
@ -82,14 +80,11 @@ class _LatestCommitCardState extends State<LatestCommitCard> {
child: Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: <Widget>[
Column(
Expanded(
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: <Widget>[
const Row(
children: <Widget>[
Text('ReVanced Patches'),
],
),
const Text('ReVanced Patches'),
const SizedBox(height: 4),
Row(
children: <Widget>[
@ -112,6 +107,7 @@ class _LatestCommitCardState extends State<LatestCommitCard> {
),
],
),
),
FutureBuilder<bool>(
future: locator<HomeViewModel>().hasPatchesUpdates(),
initialData: false,

View file

@ -49,10 +49,12 @@ class AppSelectorCard extends StatelessWidget {
),
),
const SizedBox(width: 6),
Text(
Flexible(
child: Text(
locator<PatcherViewModel>().getAppSelectionString(),
style: const TextStyle(fontWeight: FontWeight.w600),
),
),
],
),
if (locator<PatcherViewModel>().selectedApp == null)

View file

@ -70,34 +70,49 @@ class _ApplicationItemState extends State<ApplicationItem>
animationDuration: Duration(milliseconds: 450),
),
header: Row(
children: <Widget>[
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
Flexible(
child: Row(
children: [
SizedBox(
width: 40,
child: Image.memory(widget.icon, height: 40, width: 40),
),
const SizedBox(width: 4),
Padding(
padding: const EdgeInsets.only(left: 15.0),
const SizedBox(width: 19),
Expanded(
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: <Widget>[
Text(
widget.name.length > 12
? '${widget.name.substring(0, 12)}...'
: widget.name,
widget.name,
maxLines: 1,
overflow: TextOverflow.ellipsis,
style: const TextStyle(
fontSize: 16,
fontWeight: FontWeight.w500,
),
),
Text(
format(widget.patchDate),
maxLines: 1,
overflow: TextOverflow.ellipsis,
style: const TextStyle(
fontSize: 16,
fontWeight: FontWeight.w500,
),
),
Text(format(widget.patchDate)),
],
),
),
const Spacer(),
],
),
),
Row(
children: [
RotationTransition(
turns:
Tween(begin: 0.0, end: 0.50).animate(_animationController),
turns: Tween(begin: 0.0, end: 0.50)
.animate(_animationController),
child: const Padding(
padding: EdgeInsets.all(8.0),
child: Icon(Icons.arrow_drop_down),
@ -118,6 +133,8 @@ class _ApplicationItemState extends State<ApplicationItem>
),
],
),
],
),
collapsed: const SizedBox(),
expanded: Padding(
padding: const EdgeInsets.only(