Skip to content

Commit 2b36cd6

Browse files
committed
fixed flexible usage and removed direcr render build for ci
1 parent 2437d3c commit 2b36cd6

File tree

2 files changed

+3
-11
lines changed

2 files changed

+3
-11
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
shell: bash
2727
run: |
2828
flutter pub get
29-
flutter build web --release --web-renderer canvaskit --base-href "/ThreeactionsArea/"
29+
flutter build web --release --base-href "/ThreeactionsArea/"
3030
3131
- name: Configure Git
3232
shell: bash

lib/pages/PortfolioMainPage.dart

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -176,15 +176,8 @@ Widget _buildAdaptiveSkillTable(bool useRow) {
176176
spacing: 16.0,
177177
runSpacing: 16.0,
178178
children: [
179-
Flexible(
180-
flex: 1,
181-
fit: FlexFit.tight,
182-
child: WorkExpTimeline(),
183-
),
184-
Flexible(
185-
flex: 2,
186-
fit: FlexFit.loose,
187-
child: SkillsColumn([
179+
WorkExpTimeline(),
180+
SkillsColumn([
188181
SkillItem("Main", ["Android", "Kotlin", "Java", "Flutter"]),
189182
SkillItem("UI", ["Jetpack Compose", "XML"]),
190183
SkillItem("Data", [
@@ -220,7 +213,6 @@ Widget _buildAdaptiveSkillTable(bool useRow) {
220213
"FreeCAD"
221214
]),
222215
], 32.0),
223-
)
224216
],
225217
);
226218
}

0 commit comments

Comments
 (0)