Unify styling
This commit is contained in:
parent
7c6e6e6651
commit
3d61c084ee
|
|
@ -718,7 +718,7 @@ abstract class AppState implements Built<AppState, AppStateBuilder> {
|
||||||
//return 'Rates: ${staticState.currencyMap.keys.map((key) => 'Rate: ${staticState.currencyMap[key].exchangeRate}').join(',')}';
|
//return 'Rates: ${staticState.currencyMap.keys.map((key) => 'Rate: ${staticState.currencyMap[key].exchangeRate}').join(',')}';
|
||||||
//return 'LOG: ${clientState.map[clientUIState.selectedId]?.systemLogs ?? ''}';
|
//return 'LOG: ${clientState.map[clientUIState.selectedId]?.systemLogs ?? ''}';
|
||||||
//return 'FREQ: ${recurringInvoiceUIState.editing.frequencyId}';
|
//return 'FREQ: ${recurringInvoiceUIState.editing.frequencyId}';
|
||||||
|
|
||||||
return '\n\nURL: ${authState.url}'
|
return '\n\nURL: ${authState.url}'
|
||||||
'\nRoute: ${uiState.currentRoute}'
|
'\nRoute: ${uiState.currentRoute}'
|
||||||
'\nPrevious: ${uiState.previousRoute}'
|
'\nPrevious: ${uiState.previousRoute}'
|
||||||
|
|
|
||||||
|
|
@ -685,7 +685,7 @@ class SidebarFooter extends StatelessWidget {
|
||||||
onTap: () => store.dispatch(
|
onTap: () => store.dispatch(
|
||||||
UpdateUserPreferences(sidebar: AppSidebar.menu)),
|
UpdateUserPreferences(sidebar: AppSidebar.menu)),
|
||||||
child: Padding(
|
child: Padding(
|
||||||
padding: const EdgeInsets.symmetric(horizontal: 12),
|
padding: const EdgeInsets.symmetric(horizontal: 8),
|
||||||
child: Icon(Icons.chevron_left),
|
child: Icon(Icons.chevron_left),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
|
|
||||||
|
|
@ -47,7 +47,7 @@ class InvoiceEditFooter extends StatelessWidget {
|
||||||
onTap: () =>
|
onTap: () =>
|
||||||
store.dispatch(ToggleEditorLayout(EntityType.invoice)),
|
store.dispatch(ToggleEditorLayout(EntityType.invoice)),
|
||||||
child: Padding(
|
child: Padding(
|
||||||
padding: const EdgeInsets.symmetric(horizontal: 12),
|
padding: const EdgeInsets.symmetric(horizontal: 8),
|
||||||
child: Icon(
|
child: Icon(
|
||||||
showSidebar ? Icons.chevron_left : Icons.chevron_right),
|
showSidebar ? Icons.chevron_left : Icons.chevron_right),
|
||||||
),
|
),
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue