mirror of
https://github.com/rainloreley/shlink-manager.git
synced 2025-04-03 02:19:37 +02:00
Compare commits
2 Commits
e1c9bc4d80
...
202ab20747
Author | SHA1 | Date | |
---|---|---|---|
202ab20747 | |||
4f8cc9e4b6 |
69
lib/global_theme.dart
Normal file
69
lib/global_theme.dart
Normal file
@ -0,0 +1,69 @@
|
|||||||
|
import 'package:dynamic_color/dynamic_color.dart';
|
||||||
|
import 'package:flutter/material.dart';
|
||||||
|
|
||||||
|
class GlobalTheme {
|
||||||
|
static final Color _lightFocusColor = Colors.black.withOpacity(0.12);
|
||||||
|
static final Color _darkFocusColor = Colors.white.withOpacity(0.12);
|
||||||
|
static ThemeData lightThemeData(ColorScheme? dynamicColorScheme) {
|
||||||
|
return themeData(lightColorScheme, dynamicColorScheme, _lightFocusColor);
|
||||||
|
}
|
||||||
|
static ThemeData darkThemeData(ColorScheme? dynamicColorScheme) {
|
||||||
|
return themeData(darkColorScheme, dynamicColorScheme, _darkFocusColor);
|
||||||
|
}
|
||||||
|
|
||||||
|
static ThemeData themeData(ColorScheme colorScheme, ColorScheme? dynamic,
|
||||||
|
Color focusColor) {
|
||||||
|
return ThemeData(
|
||||||
|
colorScheme: colorScheme,
|
||||||
|
canvasColor: colorScheme.surface,
|
||||||
|
scaffoldBackgroundColor: colorScheme.surface,
|
||||||
|
highlightColor: Colors.transparent,
|
||||||
|
dividerColor: colorScheme.outline,
|
||||||
|
focusColor: focusColor,
|
||||||
|
useMaterial3: true,
|
||||||
|
appBarTheme: AppBarTheme(
|
||||||
|
backgroundColor: colorScheme.surface,
|
||||||
|
foregroundColor: colorScheme.onSurface,
|
||||||
|
elevation: 0
|
||||||
|
)
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
static ColorScheme get lightColorScheme {
|
||||||
|
return ColorScheme(
|
||||||
|
primary: Color(0xff747ab5),
|
||||||
|
onPrimary: Colors.white,
|
||||||
|
secondary: Color(0x335d63a6),// Color(0xFFDDE0E0),
|
||||||
|
onSecondary: Color(0xFF322942),
|
||||||
|
tertiary: Colors.grey[300],
|
||||||
|
onTertiary: Colors.grey[700],
|
||||||
|
surfaceContainer: (Colors.grey[100])!,
|
||||||
|
outline: (Colors.grey[400])!,
|
||||||
|
error: (Colors.red[400])!,
|
||||||
|
onError: Colors.white,
|
||||||
|
surface: Color(0xFFFAFBFB),
|
||||||
|
onSurface: Color(0xFF241E30),
|
||||||
|
brightness: Brightness.light,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
static ColorScheme get darkColorScheme {
|
||||||
|
return ColorScheme(
|
||||||
|
primary: Color(0xff5d63a6),
|
||||||
|
secondary: Colors.blue.shade500,
|
||||||
|
secondaryContainer: Color(0xff1c1c1c),
|
||||||
|
surface: Colors.black,
|
||||||
|
surfaceContainer: Color(0xff0f0f0f),
|
||||||
|
onSurfaceVariant: Colors.grey[400],
|
||||||
|
tertiary: Colors.grey[900],
|
||||||
|
onTertiary: Colors.grey,
|
||||||
|
outline: (Colors.grey[800])!,
|
||||||
|
error: (Colors.red[400])!,
|
||||||
|
onError: Colors.white,
|
||||||
|
onPrimary: Colors.white,
|
||||||
|
onSecondary: (Colors.grey[400])!,
|
||||||
|
onSurface: Colors.white,
|
||||||
|
brightness: Brightness.dark,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
@ -1,4 +1,5 @@
|
|||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
|
import 'package:shlink_app/global_theme.dart';
|
||||||
import 'package:shlink_app/views/login_view.dart';
|
import 'package:shlink_app/views/login_view.dart';
|
||||||
import 'package:shlink_app/views/navigationbar_view.dart';
|
import 'package:shlink_app/views/navigationbar_view.dart';
|
||||||
import 'globals.dart' as globals;
|
import 'globals.dart' as globals;
|
||||||
@ -26,7 +27,9 @@ class MyApp extends StatelessWidget {
|
|||||||
return MaterialApp(
|
return MaterialApp(
|
||||||
title: 'Shlink',
|
title: 'Shlink',
|
||||||
debugShowCheckedModeBanner: false,
|
debugShowCheckedModeBanner: false,
|
||||||
theme: ThemeData(
|
theme: GlobalTheme.lightThemeData(lightColorScheme),
|
||||||
|
darkTheme: GlobalTheme.darkThemeData(darkColorScheme),
|
||||||
|
/*theme: ThemeData(
|
||||||
appBarTheme: const AppBarTheme(
|
appBarTheme: const AppBarTheme(
|
||||||
backgroundColor: Color(0xfffafafa),
|
backgroundColor: Color(0xfffafafa),
|
||||||
),
|
),
|
||||||
@ -41,7 +44,7 @@ class MyApp extends StatelessWidget {
|
|||||||
colorScheme: darkColorScheme?.copyWith(surface: Colors.black) ??
|
colorScheme: darkColorScheme?.copyWith(surface: Colors.black) ??
|
||||||
_defaultDarkColorScheme,
|
_defaultDarkColorScheme,
|
||||||
useMaterial3: true,
|
useMaterial3: true,
|
||||||
),
|
),*/
|
||||||
home: const InitialPage());
|
home: const InitialPage());
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
22
lib/util/build_api_error_snackbar.dart
Normal file
22
lib/util/build_api_error_snackbar.dart
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
import 'package:flutter/material.dart';
|
||||||
|
import 'package:shlink_app/API/server_manager.dart';
|
||||||
|
|
||||||
|
SnackBar buildApiErrorSnackbar(Failure r, BuildContext context) {
|
||||||
|
var text = "";
|
||||||
|
|
||||||
|
if (r is RequestFailure) {
|
||||||
|
text = r.description;
|
||||||
|
} else {
|
||||||
|
text = (r as ApiFailure).detail;
|
||||||
|
if ((r).invalidElements != null) {
|
||||||
|
text = "$text: ${(r).invalidElements}";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
final snackBar = SnackBar(
|
||||||
|
content: Text(text, style: TextStyle(color: Theme.of(context).colorScheme.onError)),
|
||||||
|
backgroundColor: Theme.of(context).colorScheme.error,
|
||||||
|
behavior: SnackBarBehavior.floating);
|
||||||
|
|
||||||
|
return snackBar;
|
||||||
|
}
|
@ -5,7 +5,7 @@ import 'package:flutter_sharing_intent/flutter_sharing_intent.dart';
|
|||||||
import 'package:flutter_sharing_intent/model/sharing_file.dart';
|
import 'package:flutter_sharing_intent/model/sharing_file.dart';
|
||||||
import 'package:qr_flutter/qr_flutter.dart';
|
import 'package:qr_flutter/qr_flutter.dart';
|
||||||
import 'package:shlink_app/API/Classes/ShlinkStats/shlink_stats.dart';
|
import 'package:shlink_app/API/Classes/ShlinkStats/shlink_stats.dart';
|
||||||
import 'package:shlink_app/API/server_manager.dart';
|
import 'package:shlink_app/util/build_api_error_snackbar.dart';
|
||||||
import 'package:shlink_app/views/short_url_edit_view.dart';
|
import 'package:shlink_app/views/short_url_edit_view.dart';
|
||||||
import 'package:shlink_app/views/url_list_view.dart';
|
import 'package:shlink_app/views/url_list_view.dart';
|
||||||
import 'package:shlink_app/widgets/available_servers_bottom_sheet.dart';
|
import 'package:shlink_app/widgets/available_servers_bottom_sheet.dart';
|
||||||
@ -68,18 +68,9 @@ class _HomeViewState extends State<HomeView> {
|
|||||||
shlinkStats = l;
|
shlinkStats = l;
|
||||||
});
|
});
|
||||||
}, (r) {
|
}, (r) {
|
||||||
var text = "";
|
ScaffoldMessenger.of(context).showSnackBar(
|
||||||
if (r is RequestFailure) {
|
buildApiErrorSnackbar(r, context)
|
||||||
text = r.description;
|
);
|
||||||
} else {
|
|
||||||
text = (r as ApiFailure).detail;
|
|
||||||
}
|
|
||||||
|
|
||||||
final snackBar = SnackBar(
|
|
||||||
content: Text(text),
|
|
||||||
backgroundColor: Colors.red[400],
|
|
||||||
behavior: SnackBarBehavior.floating);
|
|
||||||
ScaffoldMessenger.of(context).showSnackBar(snackBar);
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -91,18 +82,9 @@ class _HomeViewState extends State<HomeView> {
|
|||||||
shortUrlsLoaded = true;
|
shortUrlsLoaded = true;
|
||||||
});
|
});
|
||||||
}, (r) {
|
}, (r) {
|
||||||
var text = "";
|
ScaffoldMessenger.of(context).showSnackBar(
|
||||||
if (r is RequestFailure) {
|
buildApiErrorSnackbar(r, context)
|
||||||
text = r.description;
|
);
|
||||||
} else {
|
|
||||||
text = (r as ApiFailure).detail;
|
|
||||||
}
|
|
||||||
|
|
||||||
final snackBar = SnackBar(
|
|
||||||
content: Text(text),
|
|
||||||
backgroundColor: Colors.red[400],
|
|
||||||
behavior: SnackBarBehavior.floating);
|
|
||||||
ScaffoldMessenger.of(context).showSnackBar(snackBar);
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -139,7 +121,7 @@ class _HomeViewState extends State<HomeView> {
|
|||||||
},
|
},
|
||||||
child: Text(globals.serverManager.getServerUrl(),
|
child: Text(globals.serverManager.getServerUrl(),
|
||||||
style: TextStyle(
|
style: TextStyle(
|
||||||
fontSize: 16, color: Colors.grey[600])),
|
fontSize: 16, color: Theme.of(context).colorScheme.onTertiary)),
|
||||||
)
|
)
|
||||||
],
|
],
|
||||||
)),
|
)),
|
||||||
@ -189,7 +171,7 @@ class _HomeViewState extends State<HomeView> {
|
|||||||
'Create one by tapping the "+" button below',
|
'Create one by tapping the "+" button below',
|
||||||
style: TextStyle(
|
style: TextStyle(
|
||||||
fontSize: 16,
|
fontSize: 16,
|
||||||
color: Colors.grey[600]),
|
color: Theme.of(context).colorScheme.onSecondary),
|
||||||
),
|
),
|
||||||
)
|
)
|
||||||
],
|
],
|
||||||
@ -251,18 +233,12 @@ class _HomeViewState extends State<HomeView> {
|
|||||||
eyeStyle: QrEyeStyle(
|
eyeStyle: QrEyeStyle(
|
||||||
eyeShape: QrEyeShape.square,
|
eyeShape: QrEyeShape.square,
|
||||||
color:
|
color:
|
||||||
MediaQuery.of(context).platformBrightness ==
|
Theme.of(context).colorScheme.onPrimary
|
||||||
Brightness.dark
|
|
||||||
? Colors.white
|
|
||||||
: Colors.black,
|
|
||||||
),
|
),
|
||||||
dataModuleStyle: QrDataModuleStyle(
|
dataModuleStyle: QrDataModuleStyle(
|
||||||
dataModuleShape: QrDataModuleShape.square,
|
dataModuleShape: QrDataModuleShape.square,
|
||||||
color:
|
color:
|
||||||
MediaQuery.of(context).platformBrightness ==
|
Theme.of(context).colorScheme.onPrimary
|
||||||
Brightness.dark
|
|
||||||
? Colors.white
|
|
||||||
: Colors.black,
|
|
||||||
),
|
),
|
||||||
))),
|
))),
|
||||||
),
|
),
|
||||||
|
@ -135,7 +135,7 @@ class _LoginViewState extends State<LoginView> {
|
|||||||
children: [
|
children: [
|
||||||
Flexible(
|
Flexible(
|
||||||
child: Text(_errorMessage,
|
child: Text(_errorMessage,
|
||||||
style: const TextStyle(color: Colors.red),
|
style: TextStyle(color: Theme.of(context).colorScheme.onError),
|
||||||
textAlign: TextAlign.center))
|
textAlign: TextAlign.center))
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
|
@ -40,9 +40,7 @@ class _OpenSourceLicensesViewState extends State<OpenSourceLicensesView> {
|
|||||||
child: Container(
|
child: Container(
|
||||||
decoration: BoxDecoration(
|
decoration: BoxDecoration(
|
||||||
borderRadius: BorderRadius.circular(8),
|
borderRadius: BorderRadius.circular(8),
|
||||||
color: Theme.of(context).brightness == Brightness.light
|
color: Theme.of(context).colorScheme.surfaceContainer,
|
||||||
? Colors.grey[100]
|
|
||||||
: Colors.grey[900],
|
|
||||||
),
|
),
|
||||||
child: Padding(
|
child: Padding(
|
||||||
padding: const EdgeInsets.only(
|
padding: const EdgeInsets.only(
|
||||||
@ -54,13 +52,13 @@ class _OpenSourceLicensesViewState extends State<OpenSourceLicensesView> {
|
|||||||
style: const TextStyle(
|
style: const TextStyle(
|
||||||
fontWeight: FontWeight.bold, fontSize: 18)),
|
fontWeight: FontWeight.bold, fontSize: 18)),
|
||||||
Text("Version: ${currentLicense.version ?? "N/A"}",
|
Text("Version: ${currentLicense.version ?? "N/A"}",
|
||||||
style: const TextStyle(color: Colors.grey)),
|
style: TextStyle(color: Theme.of(context).colorScheme.onTertiary)),
|
||||||
const SizedBox(height: 8),
|
const SizedBox(height: 8),
|
||||||
const Divider(),
|
Divider(color: Theme.of(context).dividerColor),
|
||||||
const SizedBox(height: 8),
|
const SizedBox(height: 8),
|
||||||
Text(currentLicense.license,
|
Text(currentLicense.license,
|
||||||
textAlign: TextAlign.justify,
|
textAlign: TextAlign.justify,
|
||||||
style: const TextStyle(color: Colors.grey)),
|
style: TextStyle(color: Theme.of(context).colorScheme.onTertiary)),
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
@ -69,12 +67,12 @@ class _OpenSourceLicensesViewState extends State<OpenSourceLicensesView> {
|
|||||||
);
|
);
|
||||||
}, childCount: LicenseUtil.getLicenses().length),
|
}, childCount: LicenseUtil.getLicenses().length),
|
||||||
),
|
),
|
||||||
const SliverToBoxAdapter(
|
SliverToBoxAdapter(
|
||||||
child: Padding(
|
child: Padding(
|
||||||
padding: EdgeInsets.only(top: 8, bottom: 20),
|
padding: EdgeInsets.only(top: 8, bottom: 20),
|
||||||
child: Text(
|
child: Text(
|
||||||
"Thank you to all maintainers of these repositories 💝",
|
"Thank you to all maintainers of these repositories 💝",
|
||||||
style: TextStyle(color: Colors.grey),
|
style: TextStyle(color: Theme.of(context).colorScheme.onTertiary),
|
||||||
textAlign: TextAlign.center,
|
textAlign: TextAlign.center,
|
||||||
),
|
),
|
||||||
))
|
))
|
||||||
|
@ -3,7 +3,7 @@ import 'package:shlink_app/API/Classes/ShortURL/RedirectRule/condition_device_ty
|
|||||||
import 'package:shlink_app/API/Classes/ShortURL/RedirectRule/redirect_rule_condition.dart';
|
import 'package:shlink_app/API/Classes/ShortURL/RedirectRule/redirect_rule_condition.dart';
|
||||||
import 'package:shlink_app/API/Classes/ShortURL/RedirectRule/redirect_rule_condition_type.dart';
|
import 'package:shlink_app/API/Classes/ShortURL/RedirectRule/redirect_rule_condition_type.dart';
|
||||||
import 'package:shlink_app/API/Classes/ShortURL/short_url.dart';
|
import 'package:shlink_app/API/Classes/ShortURL/short_url.dart';
|
||||||
import 'package:shlink_app/API/server_manager.dart';
|
import 'package:shlink_app/util/build_api_error_snackbar.dart';
|
||||||
import '../globals.dart' as globals;
|
import '../globals.dart' as globals;
|
||||||
import '../API/Classes/ShortURL/RedirectRule/redirect_rule.dart';
|
import '../API/Classes/ShortURL/RedirectRule/redirect_rule.dart';
|
||||||
|
|
||||||
@ -41,18 +41,9 @@ class _RedirectRulesDetailViewState extends State<RedirectRulesDetailView> {
|
|||||||
_sortListByPriority();
|
_sortListByPriority();
|
||||||
return true;
|
return true;
|
||||||
}, (r) {
|
}, (r) {
|
||||||
var text = "";
|
ScaffoldMessenger.of(context).showSnackBar(
|
||||||
if (r is RequestFailure) {
|
buildApiErrorSnackbar(r, context)
|
||||||
text = r.description;
|
);
|
||||||
} else {
|
|
||||||
text = (r as ApiFailure).detail;
|
|
||||||
}
|
|
||||||
|
|
||||||
final snackBar = SnackBar(
|
|
||||||
content: Text(text),
|
|
||||||
backgroundColor: Colors.red[400],
|
|
||||||
behavior: SnackBarBehavior.floating);
|
|
||||||
ScaffoldMessenger.of(context).showSnackBar(snackBar);
|
|
||||||
return false;
|
return false;
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
@ -63,18 +54,9 @@ class _RedirectRulesDetailViewState extends State<RedirectRulesDetailView> {
|
|||||||
response.fold((l) {
|
response.fold((l) {
|
||||||
Navigator.pop(context);
|
Navigator.pop(context);
|
||||||
}, (r) {
|
}, (r) {
|
||||||
var text = "";
|
ScaffoldMessenger.of(context).showSnackBar(
|
||||||
if (r is RequestFailure) {
|
buildApiErrorSnackbar(r, context)
|
||||||
text = r.description;
|
);
|
||||||
} else {
|
|
||||||
text = (r as ApiFailure).detail;
|
|
||||||
}
|
|
||||||
|
|
||||||
final snackBar = SnackBar(
|
|
||||||
content: Text(text),
|
|
||||||
backgroundColor: Colors.red[400],
|
|
||||||
behavior: SnackBarBehavior.floating);
|
|
||||||
ScaffoldMessenger.of(context).showSnackBar(snackBar);
|
|
||||||
return false;
|
return false;
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
@ -141,7 +123,7 @@ class _RedirectRulesDetailViewState extends State<RedirectRulesDetailView> {
|
|||||||
child: Text(
|
child: Text(
|
||||||
'Adding redirect rules will be supported soon!',
|
'Adding redirect rules will be supported soon!',
|
||||||
style: TextStyle(
|
style: TextStyle(
|
||||||
fontSize: 16, color: Colors.grey[600]),
|
fontSize: 16, color: Theme.of(context).colorScheme.onSecondary),
|
||||||
),
|
),
|
||||||
)
|
)
|
||||||
],
|
],
|
||||||
@ -221,10 +203,7 @@ class _ListCellState extends State<_ListCell> {
|
|||||||
decoration: BoxDecoration(
|
decoration: BoxDecoration(
|
||||||
border: Border(
|
border: Border(
|
||||||
bottom: BorderSide(
|
bottom: BorderSide(
|
||||||
color: MediaQuery.of(context).platformBrightness ==
|
color: Theme.of(context).dividerColor)),
|
||||||
Brightness.dark
|
|
||||||
? Colors.grey[800]!
|
|
||||||
: Colors.grey[300]!)),
|
|
||||||
),
|
),
|
||||||
child: Column(
|
child: Column(
|
||||||
crossAxisAlignment: CrossAxisAlignment.start,
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
@ -252,10 +231,7 @@ class _ListCellState extends State<_ListCell> {
|
|||||||
decoration: BoxDecoration(
|
decoration: BoxDecoration(
|
||||||
borderRadius: BorderRadius.circular(4),
|
borderRadius: BorderRadius.circular(4),
|
||||||
color:
|
color:
|
||||||
MediaQuery.of(context).platformBrightness ==
|
Theme.of(context).colorScheme.tertiary,
|
||||||
Brightness.dark
|
|
||||||
? Colors.grey[900]
|
|
||||||
: Colors.grey[300],
|
|
||||||
),
|
),
|
||||||
child: Text(_conditionToTagString(condition)),
|
child: Text(_conditionToTagString(condition)),
|
||||||
),
|
),
|
||||||
@ -269,19 +245,13 @@ class _ListCellState extends State<_ListCell> {
|
|||||||
children: [
|
children: [
|
||||||
IconButton(
|
IconButton(
|
||||||
disabledColor:
|
disabledColor:
|
||||||
MediaQuery.of(context).platformBrightness ==
|
Theme.of(context).disabledColor,
|
||||||
Brightness.dark
|
|
||||||
? Colors.grey[700]
|
|
||||||
: Colors.grey[400],
|
|
||||||
onPressed: widget.moveUp,
|
onPressed: widget.moveUp,
|
||||||
icon: const Icon(Icons.arrow_upward),
|
icon: const Icon(Icons.arrow_upward),
|
||||||
),
|
),
|
||||||
IconButton(
|
IconButton(
|
||||||
disabledColor:
|
disabledColor:
|
||||||
MediaQuery.of(context).platformBrightness ==
|
Theme.of(context).disabledColor,
|
||||||
Brightness.dark
|
|
||||||
? Colors.grey[700]
|
|
||||||
: Colors.grey[400],
|
|
||||||
onPressed: widget.moveDown,
|
onPressed: widget.moveDown,
|
||||||
icon: const Icon(Icons.arrow_downward),
|
icon: const Icon(Icons.arrow_downward),
|
||||||
),
|
),
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
import 'package:package_info_plus/package_info_plus.dart';
|
import 'package:package_info_plus/package_info_plus.dart';
|
||||||
import 'package:shlink_app/API/server_manager.dart';
|
import 'package:shlink_app/util/build_api_error_snackbar.dart';
|
||||||
import 'package:shlink_app/views/opensource_licenses_view.dart';
|
import 'package:shlink_app/views/opensource_licenses_view.dart';
|
||||||
import 'package:shlink_app/widgets/available_servers_bottom_sheet.dart';
|
import 'package:shlink_app/widgets/available_servers_bottom_sheet.dart';
|
||||||
import 'package:url_launcher/url_launcher.dart';
|
import 'package:url_launcher/url_launcher.dart';
|
||||||
@ -43,19 +43,9 @@ class _SettingsViewState extends State<SettingsView> {
|
|||||||
setState(() {
|
setState(() {
|
||||||
_serverStatus = ServerStatus.disconnected;
|
_serverStatus = ServerStatus.disconnected;
|
||||||
});
|
});
|
||||||
|
ScaffoldMessenger.of(context).showSnackBar(
|
||||||
var text = "";
|
buildApiErrorSnackbar(r, context)
|
||||||
if (r is RequestFailure) {
|
);
|
||||||
text = r.description;
|
|
||||||
} else {
|
|
||||||
text = (r as ApiFailure).detail;
|
|
||||||
}
|
|
||||||
|
|
||||||
final snackBar = SnackBar(
|
|
||||||
content: Text(text),
|
|
||||||
backgroundColor: Colors.red[400],
|
|
||||||
behavior: SnackBarBehavior.floating);
|
|
||||||
ScaffoldMessenger.of(context).showSnackBar(snackBar);
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -87,9 +77,7 @@ class _SettingsViewState extends State<SettingsView> {
|
|||||||
child: Container(
|
child: Container(
|
||||||
decoration: BoxDecoration(
|
decoration: BoxDecoration(
|
||||||
borderRadius: BorderRadius.circular(8),
|
borderRadius: BorderRadius.circular(8),
|
||||||
color: Theme.of(context).brightness == Brightness.light
|
color: Theme.of(context).colorScheme.surfaceContainer
|
||||||
? Colors.grey[100]
|
|
||||||
: Colors.grey[900],
|
|
||||||
),
|
),
|
||||||
child: Padding(
|
child: Padding(
|
||||||
padding: const EdgeInsets.all(12.0),
|
padding: const EdgeInsets.all(12.0),
|
||||||
@ -110,29 +98,29 @@ class _SettingsViewState extends State<SettingsView> {
|
|||||||
Column(
|
Column(
|
||||||
crossAxisAlignment: CrossAxisAlignment.start,
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
children: [
|
children: [
|
||||||
const Text("Connected to",
|
Text("Connected to",
|
||||||
style: TextStyle(color: Colors.grey)),
|
style: TextStyle(color: Theme.of(context).colorScheme.onTertiary)),
|
||||||
Text(globals.serverManager.getServerUrl(),
|
Text(globals.serverManager.getServerUrl(),
|
||||||
style: const TextStyle(
|
style: const TextStyle(
|
||||||
fontWeight: FontWeight.bold,
|
fontWeight: FontWeight.bold,
|
||||||
fontSize: 16)),
|
fontSize: 16)),
|
||||||
Row(
|
Row(
|
||||||
children: [
|
children: [
|
||||||
const Text("API Version: ",
|
Text("API Version: ",
|
||||||
style: TextStyle(
|
style: TextStyle(
|
||||||
color: Colors.grey,
|
color: Theme.of(context).colorScheme.onTertiary,
|
||||||
fontWeight: FontWeight.w600)),
|
fontWeight: FontWeight.w600)),
|
||||||
Text(globals.serverManager.getApiVersion(),
|
Text(globals.serverManager.getApiVersion(),
|
||||||
style: const TextStyle(
|
|
||||||
color: Colors.grey)),
|
|
||||||
const SizedBox(width: 16),
|
|
||||||
const Text("Server Version: ",
|
|
||||||
style: TextStyle(
|
style: TextStyle(
|
||||||
color: Colors.grey,
|
color: Theme.of(context).colorScheme.onTertiary)),
|
||||||
|
const SizedBox(width: 16),
|
||||||
|
Text("Server Version: ",
|
||||||
|
style: TextStyle(
|
||||||
|
color: Theme.of(context).colorScheme.onTertiary,
|
||||||
fontWeight: FontWeight.w600)),
|
fontWeight: FontWeight.w600)),
|
||||||
Text(_serverVersion,
|
Text(_serverVersion,
|
||||||
style:
|
style:
|
||||||
const TextStyle(color: Colors.grey))
|
TextStyle(color: Theme.of(context).colorScheme.onTertiary))
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
@ -143,7 +131,7 @@ class _SettingsViewState extends State<SettingsView> {
|
|||||||
),
|
),
|
||||||
),
|
),
|
||||||
const SizedBox(height: 8),
|
const SizedBox(height: 8),
|
||||||
const Divider(),
|
Divider(color: Theme.of(context).dividerColor),
|
||||||
const SizedBox(height: 8),
|
const SizedBox(height: 8),
|
||||||
GestureDetector(
|
GestureDetector(
|
||||||
onTap: () {
|
onTap: () {
|
||||||
@ -154,9 +142,7 @@ class _SettingsViewState extends State<SettingsView> {
|
|||||||
child: Container(
|
child: Container(
|
||||||
decoration: BoxDecoration(
|
decoration: BoxDecoration(
|
||||||
borderRadius: BorderRadius.circular(8),
|
borderRadius: BorderRadius.circular(8),
|
||||||
color: Theme.of(context).brightness == Brightness.light
|
color: Theme.of(context).colorScheme.surfaceContainer
|
||||||
? Colors.grey[100]
|
|
||||||
: Colors.grey[900],
|
|
||||||
),
|
),
|
||||||
child: const Padding(
|
child: const Padding(
|
||||||
padding: EdgeInsets.only(
|
padding: EdgeInsets.only(
|
||||||
@ -190,9 +176,7 @@ class _SettingsViewState extends State<SettingsView> {
|
|||||||
child: Container(
|
child: Container(
|
||||||
decoration: BoxDecoration(
|
decoration: BoxDecoration(
|
||||||
borderRadius: BorderRadius.circular(8),
|
borderRadius: BorderRadius.circular(8),
|
||||||
color: Theme.of(context).brightness == Brightness.light
|
color: Theme.of(context).colorScheme.surfaceContainer
|
||||||
? Colors.grey[100]
|
|
||||||
: Colors.grey[900],
|
|
||||||
),
|
),
|
||||||
child: const Padding(
|
child: const Padding(
|
||||||
padding: EdgeInsets.only(
|
padding: EdgeInsets.only(
|
||||||
@ -226,9 +210,7 @@ class _SettingsViewState extends State<SettingsView> {
|
|||||||
child: Container(
|
child: Container(
|
||||||
decoration: BoxDecoration(
|
decoration: BoxDecoration(
|
||||||
borderRadius: BorderRadius.circular(8),
|
borderRadius: BorderRadius.circular(8),
|
||||||
color: Theme.of(context).brightness == Brightness.light
|
color: Theme.of(context).colorScheme.surfaceContainer
|
||||||
? Colors.grey[100]
|
|
||||||
: Colors.grey[900],
|
|
||||||
),
|
),
|
||||||
child: const Padding(
|
child: const Padding(
|
||||||
padding: EdgeInsets.only(
|
padding: EdgeInsets.only(
|
||||||
@ -261,13 +243,11 @@ class _SettingsViewState extends State<SettingsView> {
|
|||||||
decoration: BoxDecoration(
|
decoration: BoxDecoration(
|
||||||
borderRadius: BorderRadius.circular(8),
|
borderRadius: BorderRadius.circular(8),
|
||||||
color:
|
color:
|
||||||
Theme.of(context).brightness == Brightness.light
|
Theme.of(context).colorScheme.surfaceContainer
|
||||||
? Colors.grey[100]
|
|
||||||
: Colors.grey[900],
|
|
||||||
),
|
),
|
||||||
child: Text(
|
child: Text(
|
||||||
"${packageInfo.appName}, v${packageInfo.version} (${packageInfo.buildNumber})",
|
"${packageInfo.appName}, v${packageInfo.version} (${packageInfo.buildNumber})",
|
||||||
style: const TextStyle(color: Colors.grey),
|
style: TextStyle(color: Theme.of(context).colorScheme.onSecondary),
|
||||||
),
|
),
|
||||||
)
|
)
|
||||||
],
|
],
|
||||||
|
@ -4,6 +4,7 @@ import 'package:flutter/services.dart';
|
|||||||
import 'package:shlink_app/API/Classes/ShortURL/short_url.dart';
|
import 'package:shlink_app/API/Classes/ShortURL/short_url.dart';
|
||||||
import 'package:shlink_app/API/Classes/ShortURLSubmission/short_url_submission.dart';
|
import 'package:shlink_app/API/Classes/ShortURLSubmission/short_url_submission.dart';
|
||||||
import 'package:shlink_app/API/server_manager.dart';
|
import 'package:shlink_app/API/server_manager.dart';
|
||||||
|
import 'package:shlink_app/util/build_api_error_snackbar.dart';
|
||||||
import '../globals.dart' as globals;
|
import '../globals.dart' as globals;
|
||||||
|
|
||||||
class ShortURLEditView extends StatefulWidget {
|
class ShortURLEditView extends StatefulWidget {
|
||||||
@ -72,6 +73,34 @@ class _ShortURLEditViewState extends State<ShortURLEditView>
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void _saveButtonPressed() {
|
||||||
|
if (!isSaving) {
|
||||||
|
setState(() {
|
||||||
|
isSaving = true;
|
||||||
|
longUrlError = "";
|
||||||
|
randomSlugLengthError = "";
|
||||||
|
});
|
||||||
|
if (longUrlController.text == "") {
|
||||||
|
setState(() {
|
||||||
|
longUrlError = "URL cannot be empty";
|
||||||
|
isSaving = false;
|
||||||
|
});
|
||||||
|
return;
|
||||||
|
} else if (int.tryParse(randomSlugLengthController.text) ==
|
||||||
|
null ||
|
||||||
|
int.tryParse(randomSlugLengthController.text)! < 1 ||
|
||||||
|
int.tryParse(randomSlugLengthController.text)! > 50) {
|
||||||
|
setState(() {
|
||||||
|
randomSlugLengthError = "invalid number";
|
||||||
|
isSaving = false;
|
||||||
|
});
|
||||||
|
return;
|
||||||
|
} else {
|
||||||
|
_submitShortUrl();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
void _submitShortUrl() async {
|
void _submitShortUrl() async {
|
||||||
var newSubmission = ShortURLSubmission(
|
var newSubmission = ShortURLSubmission(
|
||||||
longUrl: longUrlController.text,
|
longUrl: longUrlController.text,
|
||||||
@ -119,22 +148,9 @@ class _ShortURLEditViewState extends State<ShortURLEditView>
|
|||||||
isSaving = false;
|
isSaving = false;
|
||||||
});
|
});
|
||||||
|
|
||||||
var text = "";
|
ScaffoldMessenger.of(context).showSnackBar(
|
||||||
|
buildApiErrorSnackbar(r, context)
|
||||||
if (r is RequestFailure) {
|
);
|
||||||
text = r.description;
|
|
||||||
} else {
|
|
||||||
text = (r as ApiFailure).detail;
|
|
||||||
if ((r).invalidElements != null) {
|
|
||||||
text = "$text: ${(r).invalidElements}";
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
final snackBar = SnackBar(
|
|
||||||
content: Text(text),
|
|
||||||
backgroundColor: Colors.red[400],
|
|
||||||
behavior: SnackBarBehavior.floating);
|
|
||||||
ScaffoldMessenger.of(context).showSnackBar(snackBar);
|
|
||||||
return false;
|
return false;
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
@ -149,203 +165,172 @@ class _ShortURLEditViewState extends State<ShortURLEditView>
|
|||||||
style: const TextStyle(fontWeight: FontWeight.bold)),
|
style: const TextStyle(fontWeight: FontWeight.bold)),
|
||||||
),
|
),
|
||||||
SliverToBoxAdapter(
|
SliverToBoxAdapter(
|
||||||
child: Padding(
|
child: Padding(
|
||||||
padding: const EdgeInsets.only(left: 16, right: 16, top: 16),
|
padding: EdgeInsets.only(top: 16, left: 8, right: 8),
|
||||||
child: Column(
|
child: Wrap(
|
||||||
children: [
|
runSpacing: 16,
|
||||||
TextField(
|
children: [
|
||||||
controller: longUrlController,
|
TextField(
|
||||||
decoration: InputDecoration(
|
controller: longUrlController,
|
||||||
errorText: longUrlError != "" ? longUrlError : null,
|
decoration: InputDecoration(
|
||||||
border: const OutlineInputBorder(),
|
errorText: longUrlError != "" ? longUrlError : null,
|
||||||
label: const Row(
|
border: const OutlineInputBorder(),
|
||||||
children: [
|
label: const Row(
|
||||||
Icon(Icons.public),
|
children: [
|
||||||
SizedBox(width: 8),
|
Icon(Icons.public),
|
||||||
Text("Long URL")
|
SizedBox(width: 8),
|
||||||
],
|
Text("Long URL")
|
||||||
)),
|
],
|
||||||
),
|
)),
|
||||||
const SizedBox(height: 16),
|
),
|
||||||
Row(
|
Row(
|
||||||
children: [
|
children: [
|
||||||
Expanded(
|
Expanded(
|
||||||
child: TextField(
|
child: TextField(
|
||||||
enabled: !disableSlugEditor,
|
enabled: !disableSlugEditor,
|
||||||
controller: customSlugController,
|
controller: customSlugController,
|
||||||
style: TextStyle(
|
style: TextStyle(
|
||||||
color: randomSlug
|
color: randomSlug
|
||||||
? Colors.grey
|
? Theme.of(context).colorScheme.onTertiary
|
||||||
: Theme.of(context).brightness ==
|
: Theme.of(context).colorScheme.onPrimary),
|
||||||
Brightness.light
|
onChanged: (_) {
|
||||||
? Colors.black
|
if (randomSlug) {
|
||||||
: Colors.white),
|
setState(() {
|
||||||
onChanged: (_) {
|
randomSlug = false;
|
||||||
if (randomSlug) {
|
});
|
||||||
setState(() {
|
}
|
||||||
randomSlug = false;
|
},
|
||||||
});
|
decoration: InputDecoration(
|
||||||
}
|
border: const OutlineInputBorder(),
|
||||||
},
|
label: Row(
|
||||||
decoration: InputDecoration(
|
children: [
|
||||||
border: const OutlineInputBorder(),
|
const Icon(Icons.link),
|
||||||
label: Row(
|
const SizedBox(width: 8),
|
||||||
children: [
|
Text(
|
||||||
const Icon(Icons.link),
|
"${randomSlug ? "Random" : "Custom"} slug",
|
||||||
const SizedBox(width: 8),
|
style: TextStyle(
|
||||||
Text(
|
fontStyle: randomSlug
|
||||||
"${randomSlug ? "Random" : "Custom"} slug",
|
? FontStyle.italic
|
||||||
style: TextStyle(
|
: FontStyle.normal),
|
||||||
fontStyle: randomSlug
|
)
|
||||||
? FontStyle.italic
|
],
|
||||||
: FontStyle.normal),
|
)),
|
||||||
)
|
),
|
||||||
],
|
|
||||||
)),
|
|
||||||
),
|
),
|
||||||
|
const SizedBox(width: 8),
|
||||||
|
RotationTransition(
|
||||||
|
turns: Tween(begin: 0.0, end: 3.0).animate(
|
||||||
|
CurvedAnimation(
|
||||||
|
parent: _customSlugDiceAnimationController,
|
||||||
|
curve: Curves.easeInOutExpo)),
|
||||||
|
child: IconButton(
|
||||||
|
onPressed: disableSlugEditor
|
||||||
|
? null
|
||||||
|
: () {
|
||||||
|
if (randomSlug) {
|
||||||
|
_customSlugDiceAnimationController.reverse(
|
||||||
|
from: 1);
|
||||||
|
} else {
|
||||||
|
_customSlugDiceAnimationController.forward(
|
||||||
|
from: 0);
|
||||||
|
}
|
||||||
|
setState(() {
|
||||||
|
randomSlug = !randomSlug;
|
||||||
|
});
|
||||||
|
},
|
||||||
|
icon: Icon(
|
||||||
|
randomSlug ? Icons.casino : Icons.casino_outlined,
|
||||||
|
color: randomSlug ? Colors.green : Colors.grey)),
|
||||||
|
)
|
||||||
|
],
|
||||||
|
),
|
||||||
|
if (randomSlug)
|
||||||
|
Row(
|
||||||
|
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
||||||
|
children: [
|
||||||
|
const Text("Random slug length"),
|
||||||
|
SizedBox(
|
||||||
|
width: 100,
|
||||||
|
child: TextField(
|
||||||
|
controller: randomSlugLengthController,
|
||||||
|
keyboardType: TextInputType.number,
|
||||||
|
decoration: InputDecoration(
|
||||||
|
errorText:
|
||||||
|
randomSlugLengthError != "" ? "" : null,
|
||||||
|
border: const OutlineInputBorder(),
|
||||||
|
label: const Row(
|
||||||
|
children: [
|
||||||
|
Icon(Icons.tag),
|
||||||
|
SizedBox(width: 8),
|
||||||
|
Text("Length")
|
||||||
|
],
|
||||||
|
)),
|
||||||
|
))
|
||||||
|
],
|
||||||
),
|
),
|
||||||
const SizedBox(width: 8),
|
TextField(
|
||||||
RotationTransition(
|
controller: titleController,
|
||||||
turns: Tween(begin: 0.0, end: 3.0).animate(
|
decoration: const InputDecoration(
|
||||||
CurvedAnimation(
|
border: OutlineInputBorder(),
|
||||||
parent: _customSlugDiceAnimationController,
|
label: Row(
|
||||||
curve: Curves.easeInOutExpo)),
|
children: [
|
||||||
child: IconButton(
|
Icon(Icons.badge),
|
||||||
onPressed: disableSlugEditor
|
SizedBox(width: 8),
|
||||||
? null
|
Text("Title")
|
||||||
: () {
|
],
|
||||||
if (randomSlug) {
|
)),
|
||||||
_customSlugDiceAnimationController.reverse(
|
),
|
||||||
from: 1);
|
|
||||||
} else {
|
|
||||||
_customSlugDiceAnimationController.forward(
|
|
||||||
from: 0);
|
|
||||||
}
|
|
||||||
setState(() {
|
|
||||||
randomSlug = !randomSlug;
|
|
||||||
});
|
|
||||||
},
|
|
||||||
icon: Icon(
|
|
||||||
randomSlug ? Icons.casino : Icons.casino_outlined,
|
|
||||||
color: randomSlug ? Colors.green : Colors.grey)),
|
|
||||||
)
|
|
||||||
],
|
|
||||||
),
|
|
||||||
if (randomSlug) const SizedBox(height: 16),
|
|
||||||
if (randomSlug)
|
|
||||||
Row(
|
Row(
|
||||||
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
||||||
children: [
|
children: [
|
||||||
const Text("Random slug length"),
|
const Text("Crawlable"),
|
||||||
SizedBox(
|
Switch(
|
||||||
width: 100,
|
value: isCrawlable,
|
||||||
child: TextField(
|
onChanged: (_) {
|
||||||
controller: randomSlugLengthController,
|
setState(() {
|
||||||
keyboardType: TextInputType.number,
|
isCrawlable = !isCrawlable;
|
||||||
decoration: InputDecoration(
|
});
|
||||||
errorText:
|
},
|
||||||
randomSlugLengthError != "" ? "" : null,
|
)
|
||||||
border: const OutlineInputBorder(),
|
|
||||||
label: const Row(
|
|
||||||
children: [
|
|
||||||
Icon(Icons.tag),
|
|
||||||
SizedBox(width: 8),
|
|
||||||
Text("Length")
|
|
||||||
],
|
|
||||||
)),
|
|
||||||
))
|
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
const SizedBox(height: 16),
|
Row(
|
||||||
TextField(
|
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
||||||
controller: titleController,
|
children: [
|
||||||
decoration: const InputDecoration(
|
const Text("Forward query params"),
|
||||||
border: OutlineInputBorder(),
|
Switch(
|
||||||
label: Row(
|
value: forwardQuery,
|
||||||
children: [
|
onChanged: (_) {
|
||||||
Icon(Icons.badge),
|
setState(() {
|
||||||
SizedBox(width: 8),
|
forwardQuery = !forwardQuery;
|
||||||
Text("Title")
|
});
|
||||||
],
|
},
|
||||||
)),
|
)
|
||||||
),
|
],
|
||||||
const SizedBox(height: 16),
|
),
|
||||||
Row(
|
Row(
|
||||||
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
||||||
children: [
|
children: [
|
||||||
const Text("Crawlable"),
|
const Text("Copy to clipboard"),
|
||||||
Switch(
|
Switch(
|
||||||
value: isCrawlable,
|
value: copyToClipboard,
|
||||||
onChanged: (_) {
|
onChanged: (_) {
|
||||||
setState(() {
|
setState(() {
|
||||||
isCrawlable = !isCrawlable;
|
copyToClipboard = !copyToClipboard;
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
)
|
)
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
const SizedBox(height: 16),
|
],
|
||||||
Row(
|
),
|
||||||
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
)
|
||||||
children: [
|
)
|
||||||
const Text("Forward query params"),
|
|
||||||
Switch(
|
|
||||||
value: forwardQuery,
|
|
||||||
onChanged: (_) {
|
|
||||||
setState(() {
|
|
||||||
forwardQuery = !forwardQuery;
|
|
||||||
});
|
|
||||||
},
|
|
||||||
)
|
|
||||||
],
|
|
||||||
),
|
|
||||||
const SizedBox(height: 16),
|
|
||||||
Row(
|
|
||||||
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
|
||||||
children: [
|
|
||||||
const Text("Copy to clipboard"),
|
|
||||||
Switch(
|
|
||||||
value: copyToClipboard,
|
|
||||||
onChanged: (_) {
|
|
||||||
setState(() {
|
|
||||||
copyToClipboard = !copyToClipboard;
|
|
||||||
});
|
|
||||||
},
|
|
||||||
)
|
|
||||||
],
|
|
||||||
),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
))
|
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
floatingActionButton: FloatingActionButton(
|
floatingActionButton: FloatingActionButton(
|
||||||
onPressed: () {
|
onPressed: () {
|
||||||
if (!isSaving) {
|
_saveButtonPressed();
|
||||||
setState(() {
|
|
||||||
isSaving = true;
|
|
||||||
longUrlError = "";
|
|
||||||
randomSlugLengthError = "";
|
|
||||||
});
|
|
||||||
if (longUrlController.text == "") {
|
|
||||||
setState(() {
|
|
||||||
longUrlError = "URL cannot be empty";
|
|
||||||
isSaving = false;
|
|
||||||
});
|
|
||||||
return;
|
|
||||||
} else if (int.tryParse(randomSlugLengthController.text) ==
|
|
||||||
null ||
|
|
||||||
int.tryParse(randomSlugLengthController.text)! < 1 ||
|
|
||||||
int.tryParse(randomSlugLengthController.text)! > 50) {
|
|
||||||
setState(() {
|
|
||||||
randomSlugLengthError = "invalid number";
|
|
||||||
isSaving = false;
|
|
||||||
});
|
|
||||||
return;
|
|
||||||
} else {
|
|
||||||
_submitShortUrl();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
child: isSaving
|
child: isSaving
|
||||||
? const Padding(
|
? const Padding(
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
import 'package:shlink_app/API/Classes/ShortURL/short_url.dart';
|
import 'package:shlink_app/API/Classes/ShortURL/short_url.dart';
|
||||||
import 'package:intl/intl.dart';
|
import 'package:intl/intl.dart';
|
||||||
import 'package:shlink_app/API/server_manager.dart';
|
import 'package:shlink_app/util/build_api_error_snackbar.dart';
|
||||||
import 'package:shlink_app/views/redirect_rules_detail_view.dart';
|
import 'package:shlink_app/views/redirect_rules_detail_view.dart';
|
||||||
import 'package:shlink_app/views/short_url_edit_view.dart';
|
import 'package:shlink_app/views/short_url_edit_view.dart';
|
||||||
import 'package:shlink_app/widgets/url_tags_list_widget.dart';
|
import 'package:shlink_app/widgets/url_tags_list_widget.dart';
|
||||||
@ -67,18 +67,9 @@ class _URLDetailViewState extends State<URLDetailView> {
|
|||||||
ScaffoldMessenger.of(context).showSnackBar(snackBar);
|
ScaffoldMessenger.of(context).showSnackBar(snackBar);
|
||||||
return true;
|
return true;
|
||||||
}, (r) {
|
}, (r) {
|
||||||
var text = "";
|
ScaffoldMessenger.of(context).showSnackBar(
|
||||||
if (r is RequestFailure) {
|
buildApiErrorSnackbar(r, context)
|
||||||
text = r.description;
|
);
|
||||||
} else {
|
|
||||||
text = (r as ApiFailure).detail;
|
|
||||||
}
|
|
||||||
|
|
||||||
final snackBar = SnackBar(
|
|
||||||
content: Text(text),
|
|
||||||
backgroundColor: Colors.red[400],
|
|
||||||
behavior: SnackBarBehavior.floating);
|
|
||||||
ScaffoldMessenger.of(context).showSnackBar(snackBar);
|
|
||||||
return false;
|
return false;
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
@ -207,10 +198,7 @@ class _ListCellState extends State<_ListCell> {
|
|||||||
decoration: BoxDecoration(
|
decoration: BoxDecoration(
|
||||||
border: Border(
|
border: Border(
|
||||||
top: BorderSide(
|
top: BorderSide(
|
||||||
color: MediaQuery.of(context).platformBrightness ==
|
color: Theme.of(context).dividerColor)),
|
||||||
Brightness.dark
|
|
||||||
? Colors.grey[800]!
|
|
||||||
: Colors.grey[300]!)),
|
|
||||||
),
|
),
|
||||||
child: Row(
|
child: Row(
|
||||||
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
||||||
@ -226,10 +214,7 @@ class _ListCellState extends State<_ListCell> {
|
|||||||
child: Container(
|
child: Container(
|
||||||
decoration: BoxDecoration(
|
decoration: BoxDecoration(
|
||||||
borderRadius: BorderRadius.circular(8),
|
borderRadius: BorderRadius.circular(8),
|
||||||
color: Theme.of(context).brightness ==
|
color: Theme.of(context).colorScheme.outline,
|
||||||
Brightness.dark
|
|
||||||
? Colors.grey[700]
|
|
||||||
: Colors.grey[300],
|
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
import 'package:qr_flutter/qr_flutter.dart';
|
import 'package:qr_flutter/qr_flutter.dart';
|
||||||
import 'package:shlink_app/API/Classes/ShortURL/short_url.dart';
|
import 'package:shlink_app/API/Classes/ShortURL/short_url.dart';
|
||||||
import 'package:shlink_app/API/server_manager.dart';
|
import 'package:shlink_app/util/build_api_error_snackbar.dart';
|
||||||
import 'package:shlink_app/views/short_url_edit_view.dart';
|
import 'package:shlink_app/views/short_url_edit_view.dart';
|
||||||
import 'package:shlink_app/views/url_detail_view.dart';
|
import 'package:shlink_app/views/url_detail_view.dart';
|
||||||
import 'package:shlink_app/widgets/url_tags_list_widget.dart';
|
import 'package:shlink_app/widgets/url_tags_list_widget.dart';
|
||||||
@ -38,18 +38,9 @@ class _URLListViewState extends State<URLListView> {
|
|||||||
});
|
});
|
||||||
return true;
|
return true;
|
||||||
}, (r) {
|
}, (r) {
|
||||||
var text = "";
|
ScaffoldMessenger.of(context).showSnackBar(
|
||||||
if (r is RequestFailure) {
|
buildApiErrorSnackbar(r, context)
|
||||||
text = r.description;
|
);
|
||||||
} else {
|
|
||||||
text = (r as ApiFailure).detail;
|
|
||||||
}
|
|
||||||
|
|
||||||
final snackBar = SnackBar(
|
|
||||||
content: Text(text),
|
|
||||||
backgroundColor: Colors.red[400],
|
|
||||||
behavior: SnackBarBehavior.floating);
|
|
||||||
ScaffoldMessenger.of(context).showSnackBar(snackBar);
|
|
||||||
return false;
|
return false;
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
@ -99,7 +90,7 @@ class _URLListViewState extends State<URLListView> {
|
|||||||
'Create one by tapping the "+" button below',
|
'Create one by tapping the "+" button below',
|
||||||
style: TextStyle(
|
style: TextStyle(
|
||||||
fontSize: 16,
|
fontSize: 16,
|
||||||
color: Colors.grey[600]),
|
color: Theme.of(context).colorScheme.onSecondary),
|
||||||
),
|
),
|
||||||
)
|
)
|
||||||
],
|
],
|
||||||
@ -151,18 +142,11 @@ class _URLListViewState extends State<URLListView> {
|
|||||||
eyeStyle: QrEyeStyle(
|
eyeStyle: QrEyeStyle(
|
||||||
eyeShape: QrEyeShape.square,
|
eyeShape: QrEyeShape.square,
|
||||||
color:
|
color:
|
||||||
MediaQuery.of(context).platformBrightness ==
|
Theme.of(context).colorScheme.onPrimary,
|
||||||
Brightness.dark
|
|
||||||
? Colors.white
|
|
||||||
: Colors.black,
|
|
||||||
),
|
),
|
||||||
dataModuleStyle: QrDataModuleStyle(
|
dataModuleStyle: QrDataModuleStyle(
|
||||||
dataModuleShape: QrDataModuleShape.square,
|
dataModuleShape: QrDataModuleShape.square,
|
||||||
color:
|
color: Theme.of(context).colorScheme.onPrimary,
|
||||||
MediaQuery.of(context).platformBrightness ==
|
|
||||||
Brightness.dark
|
|
||||||
? Colors.white
|
|
||||||
: Colors.black,
|
|
||||||
),
|
),
|
||||||
))),
|
))),
|
||||||
),
|
),
|
||||||
@ -209,10 +193,7 @@ class _ShortURLCellState extends State<ShortURLCell> {
|
|||||||
decoration: BoxDecoration(
|
decoration: BoxDecoration(
|
||||||
border: Border(
|
border: Border(
|
||||||
bottom: BorderSide(
|
bottom: BorderSide(
|
||||||
color: MediaQuery.of(context).platformBrightness ==
|
color: Theme.of(context).dividerColor)),
|
||||||
Brightness.dark
|
|
||||||
? Colors.grey[800]!
|
|
||||||
: Colors.grey[300]!)),
|
|
||||||
),
|
),
|
||||||
child: Row(
|
child: Row(
|
||||||
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
||||||
@ -231,7 +212,7 @@ class _ShortURLCellState extends State<ShortURLCell> {
|
|||||||
maxLines: 1,
|
maxLines: 1,
|
||||||
overflow: TextOverflow.ellipsis,
|
overflow: TextOverflow.ellipsis,
|
||||||
textScaleFactor: 0.9,
|
textScaleFactor: 0.9,
|
||||||
style: TextStyle(color: Colors.grey[600]),
|
style: TextStyle(color: Theme.of(context).colorScheme.onTertiary),
|
||||||
),
|
),
|
||||||
// List tags in a row
|
// List tags in a row
|
||||||
UrlTagsListWidget(tags: widget.shortURL.tags)
|
UrlTagsListWidget(tags: widget.shortURL.tags)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user