Skip to content
This repository was archived by the owner on Dec 24, 2025. It is now read-only.

Commit 3bb1dd2

Browse files
committed
added logo and favicon, fixed links
1 parent a99cc50 commit 3bb1dd2

6 files changed

Lines changed: 24 additions & 8 deletions

File tree

docs/images/favicon.ico

15 KB
Binary file not shown.

docs/images/logo.svg

Lines changed: 14 additions & 0 deletions
Loading

docs/index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,10 +54,10 @@ See source code for this example [here](https://github.com/flet-dev/flet_datatab
5454

5555
## Classes
5656

57-
[DataTable2](datatable2)
57+
[DataTable2](datatable2.md)
5858

59-
[DataColumn2](datacolumn2)
59+
[DataColumn2](datacolumn2.md)
6060

61-
[DataRow2](datarow2)
61+
[DataRow2](datarow2.md)
6262

6363

mkdocs.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@ site_name: DataTable2
22

33
theme:
44
name: "material"
5+
favicon: 'images/favicon.ico'
6+
logo: 'images/logo.svg'
57

68
plugins:
79
- mkdocstrings

src/flet_datatable2/datacolumn2.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ def __init__(self, e: ControlEvent):
2929

3030

3131
class DataColumn2(Control):
32-
"""Column configuration for a [DataTable2](/datatable2).
32+
"""Column configuration for a [DataTable2](datatable2.md).
3333
3434
One column configuration must be provided for each column to display in the table.
3535

src/flet_datatable2/datatable2.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ class DataTable2(ConstrainedControl):
3636
"""In-place replacement of standard Flet [DataTable](https://flet.dev/docs/controls/datatable).
3737
3838
Has the header row always fixed and core of the table (with data rows) scrollable and stretching to max width/height of it's container.
39-
By using [DataColumn2](/datacolumn2) instead of [DataColumn](https://flet.dev/docs/controls/datatable#datacolumn) it is possible to control relative column sizes (setting them to S, M and L).
40-
[DataRow2](/datarow2) provides row-level tap event handlers.
39+
By using [DataColumn2](datacolumn2.md) instead of [DataColumn](https://flet.dev/docs/controls/datatable#datacolumn) it is possible to control relative column sizes (setting them to S, M and L).
40+
[DataRow2](datarow2.md) provides row-level tap event handlers.
4141
"""
4242

4343
def __init__(
@@ -266,7 +266,7 @@ def empty(self, value: Control):
266266
@property
267267
def columns(self) -> List[DataColumn2]:
268268
"""
269-
A list of [DataColumn2](/datacolumn2) controls describing table columns.
269+
A list of [DataColumn2](datacolumn2.md) controls describing table columns.
270270
"""
271271
return self.__columns
272272

@@ -281,7 +281,7 @@ def columns(self, value: List[DataColumn2]):
281281
@property
282282
def rows(self) -> Optional[List[DataRow2]]:
283283
"""
284-
A list of [DataRow2](/datarow2) controls defining table rows.
284+
A list of [DataRow2](datarow2.md) controls defining table rows.
285285
"""
286286
return self.__rows
287287

0 commit comments

Comments
 (0)