Swift – Sticky Table

Does anyone know how to implement a view (table/grid/collection) like these?

I have been at it for a while now and cannot figure it out. I’m pretty new to Swift which has not helped, but essentially the table should be horizontally and vertically scrollable (but not simultaneously, so there shouldn’t be any “diagonal” scrolling), and should have a pinned header row (which “pushes” at the end of the table) and a pinned column.

I’ve seen this in two different apps which makes me think it should be relatively simple but I cannot seem to get it right. I have been using SwiftUI but maybe it is just too complex and I need to fall back to UIKit.

Here is something that feels close:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<code>import SwiftUI
struct Team {
let teamId: Int
let city: String
let name: String
}
struct ScrollableTableView: View {
@State private var teams = [
Team(teamId: 1610612737, city: "Atlanta", name: "Hawks"),
Team(teamId: 1610612738, city: "Boston", name: "Celtics"),
Team(teamId: 1610612739, city: "Cleveland", name: "Cavaliers"),
Team(teamId: 1610612740, city: "New Orleans", name: "Pelicans")
]
var body: some View {
let columns = [
GridItem(.fixed(120), alignment: .leading), // Pinned first column
GridItem(.fixed(150), alignment: .leading),
GridItem(.fixed(200), alignment: .leading)
]
ScrollView([.vertical], showsIndicators: true) {
ZStack {
ScrollView([.horizontal]) {
LazyVGrid(columns: columns, alignment: .leading, pinnedViews: [.sectionHeaders]) {
// Pinned Header Section
Section(header: headerView) {
// Table Rows
ForEach(teams) { team in
Section(header: Text("") // Pinned column
.frame(height: 40)
.padding(.horizontal, 4)) {
Text(team.city)
.frame(height: 40)
.padding(.horizontal, 4)
.border(Color(.separator), width: 0.5)
Text(team.name)
.frame(height: 40)
.padding(.horizontal, 4)
.border(Color(.separator), width: 0.5)
}
.background(Color(.systemBackground))
}
}
}
}
LazyVGrid(columns: [columns[0]], alignment: .leading, pinnedViews: [.sectionHeaders]) {
Section(header: Text("Team ID")
.frame(width: 120, height: 40, alignment: .leading)
.bold()
.padding(.horizontal, 4)
.background(Color(.systemGray5))
.border(Color(.separator), width: 0.5)) {
ForEach(teams) { team in
Text(String(team.teamId)) // Pinned column
.frame(width: 120, height: 40)
.padding(.horizontal, 4)
.background(Color(.systemGray6))
.border(Color(.separator), width: 0.5)
}
}
}
}
}
.border(Color(.separator), width: 1)
}
private var headerView: some View {
HStack(spacing: 0) {
Text("")
.frame(width: 120, height: 40, alignment: .leading)
.bold()
.padding(.horizontal, 4)
.background(Color(.systemGray5))
.border(Color(.separator), width: 0.5)
Text("City")
.frame(width: 150, height: 40, alignment: .leading)
.bold()
.padding(.horizontal, 4)
.background(Color(.systemGray5))
.border(Color(.separator), width: 0.5)
Text("Name")
.frame(width: 200, height: 40, alignment: .leading)
.bold()
.padding(.horizontal, 4)
.background(Color(.systemGray5))
.border(Color(.separator), width: 0.5)
}
.background(Color(.systemGray5))
}
}
#Preview {
ScrollableTableView()
}
</code>
<code>import SwiftUI struct Team { let teamId: Int let city: String let name: String } struct ScrollableTableView: View { @State private var teams = [ Team(teamId: 1610612737, city: "Atlanta", name: "Hawks"), Team(teamId: 1610612738, city: "Boston", name: "Celtics"), Team(teamId: 1610612739, city: "Cleveland", name: "Cavaliers"), Team(teamId: 1610612740, city: "New Orleans", name: "Pelicans") ] var body: some View { let columns = [ GridItem(.fixed(120), alignment: .leading), // Pinned first column GridItem(.fixed(150), alignment: .leading), GridItem(.fixed(200), alignment: .leading) ] ScrollView([.vertical], showsIndicators: true) { ZStack { ScrollView([.horizontal]) { LazyVGrid(columns: columns, alignment: .leading, pinnedViews: [.sectionHeaders]) { // Pinned Header Section Section(header: headerView) { // Table Rows ForEach(teams) { team in Section(header: Text("") // Pinned column .frame(height: 40) .padding(.horizontal, 4)) { Text(team.city) .frame(height: 40) .padding(.horizontal, 4) .border(Color(.separator), width: 0.5) Text(team.name) .frame(height: 40) .padding(.horizontal, 4) .border(Color(.separator), width: 0.5) } .background(Color(.systemBackground)) } } } } LazyVGrid(columns: [columns[0]], alignment: .leading, pinnedViews: [.sectionHeaders]) { Section(header: Text("Team ID") .frame(width: 120, height: 40, alignment: .leading) .bold() .padding(.horizontal, 4) .background(Color(.systemGray5)) .border(Color(.separator), width: 0.5)) { ForEach(teams) { team in Text(String(team.teamId)) // Pinned column .frame(width: 120, height: 40) .padding(.horizontal, 4) .background(Color(.systemGray6)) .border(Color(.separator), width: 0.5) } } } } } .border(Color(.separator), width: 1) } private var headerView: some View { HStack(spacing: 0) { Text("") .frame(width: 120, height: 40, alignment: .leading) .bold() .padding(.horizontal, 4) .background(Color(.systemGray5)) .border(Color(.separator), width: 0.5) Text("City") .frame(width: 150, height: 40, alignment: .leading) .bold() .padding(.horizontal, 4) .background(Color(.systemGray5)) .border(Color(.separator), width: 0.5) Text("Name") .frame(width: 200, height: 40, alignment: .leading) .bold() .padding(.horizontal, 4) .background(Color(.systemGray5)) .border(Color(.separator), width: 0.5) } .background(Color(.systemGray5)) } } #Preview { ScrollableTableView() } </code>
import SwiftUI

struct Team {
    let teamId: Int
    let city: String
    let name: String
}

struct ScrollableTableView: View {
    @State private var teams = [
        Team(teamId: 1610612737, city: "Atlanta", name: "Hawks"),
        Team(teamId: 1610612738, city: "Boston", name: "Celtics"),
        Team(teamId: 1610612739, city: "Cleveland", name: "Cavaliers"),
        Team(teamId: 1610612740, city: "New Orleans", name: "Pelicans")
    ]
    
    var body: some View {
        let columns = [
            GridItem(.fixed(120), alignment: .leading), // Pinned first column
            GridItem(.fixed(150), alignment: .leading),
            GridItem(.fixed(200), alignment: .leading)
        ]
        
        ScrollView([.vertical], showsIndicators: true) {
            ZStack {
                ScrollView([.horizontal]) {
                    LazyVGrid(columns: columns, alignment: .leading, pinnedViews: [.sectionHeaders]) {
                        // Pinned Header Section
                        Section(header: headerView) {
                            // Table Rows
                            ForEach(teams) { team in
                                Section(header: Text("") // Pinned column
                                    .frame(height: 40)
                                    .padding(.horizontal, 4)) {
                                        
                                        Text(team.city)
                                            .frame(height: 40)
                                            .padding(.horizontal, 4)
                                            .border(Color(.separator), width: 0.5)
                                        
                                        Text(team.name)
                                            .frame(height: 40)
                                            .padding(.horizontal, 4)
                                            .border(Color(.separator), width: 0.5)
                                    }
                                    .background(Color(.systemBackground))
                            }
                        }
                    }
                }
                
                
                
                LazyVGrid(columns: [columns[0]], alignment: .leading, pinnedViews: [.sectionHeaders]) {
                    Section(header: Text("Team ID")
                        .frame(width: 120, height: 40, alignment: .leading)
                        .bold()
                        .padding(.horizontal, 4)
                        .background(Color(.systemGray5))
                        .border(Color(.separator), width: 0.5)) {
                        ForEach(teams) { team in
                            Text(String(team.teamId)) // Pinned column
                                .frame(width: 120, height: 40)
                                .padding(.horizontal, 4)
                                .background(Color(.systemGray6))
                                .border(Color(.separator), width: 0.5)
                        }
                    }
                }
            }
        }
        .border(Color(.separator), width: 1)
    }
    
    private var headerView: some View {
        HStack(spacing: 0) {
            Text("")
                .frame(width: 120, height: 40, alignment: .leading)
                .bold()
                .padding(.horizontal, 4)
                .background(Color(.systemGray5))
                .border(Color(.separator), width: 0.5)
            
            Text("City")
                .frame(width: 150, height: 40, alignment: .leading)
                .bold()
                .padding(.horizontal, 4)
                .background(Color(.systemGray5))
                .border(Color(.separator), width: 0.5)
            
            Text("Name")
                .frame(width: 200, height: 40, alignment: .leading)
                .bold()
                .padding(.horizontal, 4)
                .background(Color(.systemGray5))
                .border(Color(.separator), width: 0.5)
        }
        .background(Color(.systemGray5))
    }
}

#Preview {
    ScrollableTableView()
}

Recognized by Mobile Development Collective

1

Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa Dịch vụ tổ chức sự kiện 5 sao Thông tin về chúng tôi Dịch vụ sinh nhật bé trai Dịch vụ sinh nhật bé gái Sự kiện trọn gói Các tiết mục giải trí Dịch vụ bổ trợ Tiệc cưới sang trọng Dịch vụ khai trương Tư vấn tổ chức sự kiện Hình ảnh sự kiện Cập nhật tin tức Liên hệ ngay Thuê chú hề chuyên nghiệp Tiệc tất niên cho công ty Trang trí tiệc cuối năm Tiệc tất niên độc đáo Sinh nhật bé Hải Đăng Sinh nhật đáng yêu bé Khánh Vân Sinh nhật sang trọng Bích Ngân Tiệc sinh nhật bé Thanh Trang Dịch vụ ông già Noel Xiếc thú vui nhộn Biểu diễn xiếc quay đĩa Dịch vụ tổ chức tiệc uy tín Khám phá dịch vụ của chúng tôi Tiệc sinh nhật cho bé trai Trang trí tiệc cho bé gái Gói sự kiện chuyên nghiệp Chương trình giải trí hấp dẫn Dịch vụ hỗ trợ sự kiện Trang trí tiệc cưới đẹp Khởi đầu thành công với khai trương Chuyên gia tư vấn sự kiện Xem ảnh các sự kiện đẹp Tin mới về sự kiện Kết nối với đội ngũ chuyên gia Chú hề vui nhộn cho tiệc sinh nhật Ý tưởng tiệc cuối năm Tất niên độc đáo Trang trí tiệc hiện đại Tổ chức sinh nhật cho Hải Đăng Sinh nhật độc quyền Khánh Vân Phong cách tiệc Bích Ngân Trang trí tiệc bé Thanh Trang Thuê dịch vụ ông già Noel chuyên nghiệp Xem xiếc khỉ đặc sắc Xiếc quay đĩa thú vị
Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa

Swift – Sticky Table

Does anyone know how to implement a view (table/grid/collection) like these?

I have been at it for a while now and cannot figure it out. I’m pretty new to Swift which has not helped, but essentially the table should be horizontally and vertically scrollable (but not simultaneously, so there shouldn’t be any “diagonal” scrolling), and should have a pinned header row (which “pushes” at the end of the table) and a pinned column.

I’ve seen this in two different apps which makes me think it should be relatively simple but I cannot seem to get it right. I have been using SwiftUI but maybe it is just too complex and I need to fall back to UIKit.

Here is something that feels close:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<code>import SwiftUI
struct Team {
let teamId: Int
let city: String
let name: String
}
struct ScrollableTableView: View {
@State private var teams = [
Team(teamId: 1610612737, city: "Atlanta", name: "Hawks"),
Team(teamId: 1610612738, city: "Boston", name: "Celtics"),
Team(teamId: 1610612739, city: "Cleveland", name: "Cavaliers"),
Team(teamId: 1610612740, city: "New Orleans", name: "Pelicans")
]
var body: some View {
let columns = [
GridItem(.fixed(120), alignment: .leading), // Pinned first column
GridItem(.fixed(150), alignment: .leading),
GridItem(.fixed(200), alignment: .leading)
]
ScrollView([.vertical], showsIndicators: true) {
ZStack {
ScrollView([.horizontal]) {
LazyVGrid(columns: columns, alignment: .leading, pinnedViews: [.sectionHeaders]) {
// Pinned Header Section
Section(header: headerView) {
// Table Rows
ForEach(teams) { team in
Section(header: Text("") // Pinned column
.frame(height: 40)
.padding(.horizontal, 4)) {
Text(team.city)
.frame(height: 40)
.padding(.horizontal, 4)
.border(Color(.separator), width: 0.5)
Text(team.name)
.frame(height: 40)
.padding(.horizontal, 4)
.border(Color(.separator), width: 0.5)
}
.background(Color(.systemBackground))
}
}
}
}
LazyVGrid(columns: [columns[0]], alignment: .leading, pinnedViews: [.sectionHeaders]) {
Section(header: Text("Team ID")
.frame(width: 120, height: 40, alignment: .leading)
.bold()
.padding(.horizontal, 4)
.background(Color(.systemGray5))
.border(Color(.separator), width: 0.5)) {
ForEach(teams) { team in
Text(String(team.teamId)) // Pinned column
.frame(width: 120, height: 40)
.padding(.horizontal, 4)
.background(Color(.systemGray6))
.border(Color(.separator), width: 0.5)
}
}
}
}
}
.border(Color(.separator), width: 1)
}
private var headerView: some View {
HStack(spacing: 0) {
Text("")
.frame(width: 120, height: 40, alignment: .leading)
.bold()
.padding(.horizontal, 4)
.background(Color(.systemGray5))
.border(Color(.separator), width: 0.5)
Text("City")
.frame(width: 150, height: 40, alignment: .leading)
.bold()
.padding(.horizontal, 4)
.background(Color(.systemGray5))
.border(Color(.separator), width: 0.5)
Text("Name")
.frame(width: 200, height: 40, alignment: .leading)
.bold()
.padding(.horizontal, 4)
.background(Color(.systemGray5))
.border(Color(.separator), width: 0.5)
}
.background(Color(.systemGray5))
}
}
#Preview {
ScrollableTableView()
}
</code>
<code>import SwiftUI struct Team { let teamId: Int let city: String let name: String } struct ScrollableTableView: View { @State private var teams = [ Team(teamId: 1610612737, city: "Atlanta", name: "Hawks"), Team(teamId: 1610612738, city: "Boston", name: "Celtics"), Team(teamId: 1610612739, city: "Cleveland", name: "Cavaliers"), Team(teamId: 1610612740, city: "New Orleans", name: "Pelicans") ] var body: some View { let columns = [ GridItem(.fixed(120), alignment: .leading), // Pinned first column GridItem(.fixed(150), alignment: .leading), GridItem(.fixed(200), alignment: .leading) ] ScrollView([.vertical], showsIndicators: true) { ZStack { ScrollView([.horizontal]) { LazyVGrid(columns: columns, alignment: .leading, pinnedViews: [.sectionHeaders]) { // Pinned Header Section Section(header: headerView) { // Table Rows ForEach(teams) { team in Section(header: Text("") // Pinned column .frame(height: 40) .padding(.horizontal, 4)) { Text(team.city) .frame(height: 40) .padding(.horizontal, 4) .border(Color(.separator), width: 0.5) Text(team.name) .frame(height: 40) .padding(.horizontal, 4) .border(Color(.separator), width: 0.5) } .background(Color(.systemBackground)) } } } } LazyVGrid(columns: [columns[0]], alignment: .leading, pinnedViews: [.sectionHeaders]) { Section(header: Text("Team ID") .frame(width: 120, height: 40, alignment: .leading) .bold() .padding(.horizontal, 4) .background(Color(.systemGray5)) .border(Color(.separator), width: 0.5)) { ForEach(teams) { team in Text(String(team.teamId)) // Pinned column .frame(width: 120, height: 40) .padding(.horizontal, 4) .background(Color(.systemGray6)) .border(Color(.separator), width: 0.5) } } } } } .border(Color(.separator), width: 1) } private var headerView: some View { HStack(spacing: 0) { Text("") .frame(width: 120, height: 40, alignment: .leading) .bold() .padding(.horizontal, 4) .background(Color(.systemGray5)) .border(Color(.separator), width: 0.5) Text("City") .frame(width: 150, height: 40, alignment: .leading) .bold() .padding(.horizontal, 4) .background(Color(.systemGray5)) .border(Color(.separator), width: 0.5) Text("Name") .frame(width: 200, height: 40, alignment: .leading) .bold() .padding(.horizontal, 4) .background(Color(.systemGray5)) .border(Color(.separator), width: 0.5) } .background(Color(.systemGray5)) } } #Preview { ScrollableTableView() } </code>
import SwiftUI

struct Team {
    let teamId: Int
    let city: String
    let name: String
}

struct ScrollableTableView: View {
    @State private var teams = [
        Team(teamId: 1610612737, city: "Atlanta", name: "Hawks"),
        Team(teamId: 1610612738, city: "Boston", name: "Celtics"),
        Team(teamId: 1610612739, city: "Cleveland", name: "Cavaliers"),
        Team(teamId: 1610612740, city: "New Orleans", name: "Pelicans")
    ]
    
    var body: some View {
        let columns = [
            GridItem(.fixed(120), alignment: .leading), // Pinned first column
            GridItem(.fixed(150), alignment: .leading),
            GridItem(.fixed(200), alignment: .leading)
        ]
        
        ScrollView([.vertical], showsIndicators: true) {
            ZStack {
                ScrollView([.horizontal]) {
                    LazyVGrid(columns: columns, alignment: .leading, pinnedViews: [.sectionHeaders]) {
                        // Pinned Header Section
                        Section(header: headerView) {
                            // Table Rows
                            ForEach(teams) { team in
                                Section(header: Text("") // Pinned column
                                    .frame(height: 40)
                                    .padding(.horizontal, 4)) {
                                        
                                        Text(team.city)
                                            .frame(height: 40)
                                            .padding(.horizontal, 4)
                                            .border(Color(.separator), width: 0.5)
                                        
                                        Text(team.name)
                                            .frame(height: 40)
                                            .padding(.horizontal, 4)
                                            .border(Color(.separator), width: 0.5)
                                    }
                                    .background(Color(.systemBackground))
                            }
                        }
                    }
                }
                
                
                
                LazyVGrid(columns: [columns[0]], alignment: .leading, pinnedViews: [.sectionHeaders]) {
                    Section(header: Text("Team ID")
                        .frame(width: 120, height: 40, alignment: .leading)
                        .bold()
                        .padding(.horizontal, 4)
                        .background(Color(.systemGray5))
                        .border(Color(.separator), width: 0.5)) {
                        ForEach(teams) { team in
                            Text(String(team.teamId)) // Pinned column
                                .frame(width: 120, height: 40)
                                .padding(.horizontal, 4)
                                .background(Color(.systemGray6))
                                .border(Color(.separator), width: 0.5)
                        }
                    }
                }
            }
        }
        .border(Color(.separator), width: 1)
    }
    
    private var headerView: some View {
        HStack(spacing: 0) {
            Text("")
                .frame(width: 120, height: 40, alignment: .leading)
                .bold()
                .padding(.horizontal, 4)
                .background(Color(.systemGray5))
                .border(Color(.separator), width: 0.5)
            
            Text("City")
                .frame(width: 150, height: 40, alignment: .leading)
                .bold()
                .padding(.horizontal, 4)
                .background(Color(.systemGray5))
                .border(Color(.separator), width: 0.5)
            
            Text("Name")
                .frame(width: 200, height: 40, alignment: .leading)
                .bold()
                .padding(.horizontal, 4)
                .background(Color(.systemGray5))
                .border(Color(.separator), width: 0.5)
        }
        .background(Color(.systemGray5))
    }
}

#Preview {
    ScrollableTableView()
}

Recognized by Mobile Development Collective

1

Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa Dịch vụ tổ chức sự kiện 5 sao Thông tin về chúng tôi Dịch vụ sinh nhật bé trai Dịch vụ sinh nhật bé gái Sự kiện trọn gói Các tiết mục giải trí Dịch vụ bổ trợ Tiệc cưới sang trọng Dịch vụ khai trương Tư vấn tổ chức sự kiện Hình ảnh sự kiện Cập nhật tin tức Liên hệ ngay Thuê chú hề chuyên nghiệp Tiệc tất niên cho công ty Trang trí tiệc cuối năm Tiệc tất niên độc đáo Sinh nhật bé Hải Đăng Sinh nhật đáng yêu bé Khánh Vân Sinh nhật sang trọng Bích Ngân Tiệc sinh nhật bé Thanh Trang Dịch vụ ông già Noel Xiếc thú vui nhộn Biểu diễn xiếc quay đĩa Dịch vụ tổ chức tiệc uy tín Khám phá dịch vụ của chúng tôi Tiệc sinh nhật cho bé trai Trang trí tiệc cho bé gái Gói sự kiện chuyên nghiệp Chương trình giải trí hấp dẫn Dịch vụ hỗ trợ sự kiện Trang trí tiệc cưới đẹp Khởi đầu thành công với khai trương Chuyên gia tư vấn sự kiện Xem ảnh các sự kiện đẹp Tin mới về sự kiện Kết nối với đội ngũ chuyên gia Chú hề vui nhộn cho tiệc sinh nhật Ý tưởng tiệc cuối năm Tất niên độc đáo Trang trí tiệc hiện đại Tổ chức sinh nhật cho Hải Đăng Sinh nhật độc quyền Khánh Vân Phong cách tiệc Bích Ngân Trang trí tiệc bé Thanh Trang Thuê dịch vụ ông già Noel chuyên nghiệp Xem xiếc khỉ đặc sắc Xiếc quay đĩa thú vị
Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa
Thiết kế website Thiết kế website Thiết kế website Cách kháng tài khoản quảng cáo Mua bán Fanpage Facebook Dịch vụ SEO Tổ chức sinh nhật