Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 10 additions & 19 deletions docs/widgets/table.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -36,24 +36,15 @@ To know more about the Table widget in Flutter, refer to the [official documenta
"textDirection": "ltr",
"defaultVerticalAlignment": "bottom",
"border": {
"type": "tableBorder",
"top": {
"color": "#428AF5",
"width": 1.0
},
"right": {
"color": "#428AF5",
"width": 1.0
},
"bottom": {
"color": "#428AF5",
"width": 1.0
},
"left": {
"color": "#428AF5",
"width": 1.0
},
"borderRadius": 16
"color": "#428AF5",
"width": 1.0,
"style": "solid",
"borderRadius": {
"topLeft": 16.0,
"topRight": 16.0,
"bottomLeft": 16.0,
"bottomRight": 16.0
}
},
"children": [
{
Expand Down Expand Up @@ -152,7 +143,7 @@ To know more about the Table widget in Flutter, refer to the [official documenta
}
}
]
},
}
]
}
```
7 changes: 7 additions & 0 deletions examples/stac_gallery/ios/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ PODS:
- path_provider_foundation (0.0.1):
- Flutter
- FlutterMacOS
- shared_preferences_foundation (0.0.1):
- Flutter
- FlutterMacOS
- sqflite_darwin (0.0.4):
- Flutter
- FlutterMacOS
Expand All @@ -13,6 +16,7 @@ PODS:
DEPENDENCIES:
- Flutter (from `Flutter`)
- path_provider_foundation (from `.symlinks/plugins/path_provider_foundation/darwin`)
- shared_preferences_foundation (from `.symlinks/plugins/shared_preferences_foundation/darwin`)
- sqflite_darwin (from `.symlinks/plugins/sqflite_darwin/darwin`)
- webview_flutter_wkwebview (from `.symlinks/plugins/webview_flutter_wkwebview/darwin`)

Expand All @@ -21,6 +25,8 @@ EXTERNAL SOURCES:
:path: Flutter
path_provider_foundation:
:path: ".symlinks/plugins/path_provider_foundation/darwin"
shared_preferences_foundation:
:path: ".symlinks/plugins/shared_preferences_foundation/darwin"
sqflite_darwin:
:path: ".symlinks/plugins/sqflite_darwin/darwin"
webview_flutter_wkwebview:
Expand All @@ -29,6 +35,7 @@ EXTERNAL SOURCES:
SPEC CHECKSUMS:
Flutter: cabc95a1d2626b1b06e7179b784ebcf0c0cde467
path_provider_foundation: 080d55be775b7414fd5a5ef3ac137b97b097e564
shared_preferences_foundation: 7036424c3d8ec98dfe75ff1667cb0cd531ec82bb
sqflite_darwin: 20b2a3a3b70e43edae938624ce550a3cbf66a3d0
webview_flutter_wkwebview: 1821ceac936eba6f7984d89a9f3bcb4dea99ebb2

Expand Down
16 changes: 0 additions & 16 deletions examples/stac_gallery/lib/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ import 'dart:io';
import 'package:flutter/material.dart';
import 'package:flutter_bloc/flutter_bloc.dart';
import 'package:stac/stac.dart';
import 'package:stac_core/stac_core.dart';
import 'package:stac_gallery/app/details/details_screen.dart';
import 'package:stac_gallery/app/example/example_screen_parser.dart';
import 'package:stac_gallery/app/home/home_screen.dart';
Expand Down Expand Up @@ -56,18 +55,3 @@ class MyApp extends StatelessWidget {
);
}
}

StacWidget home() {
return StacScaffold(
body: StacCenter(
child: StacElevatedButton(
onPressed: StacNavigateAction(
assetPath: 'assets/json/app_bar_example.json',
),
child: StacText(
data: 'click me!',
),
),
),
);
}