Skip to content

Как работает адаптив? #5385

Closed Answered by BlackySoul
scffs asked this question in Q&A
Discussion options

You must be logged in to vote

Хмм, вроде бы у меня все работает, как ожидается

2023-06-30.11.20.05.mov

Изменения такие (ещё добавила в TabbarMobile проброс пропа className):

const { viewWidth } = useAdaptivityConditionalRender();

  const MobileTabbar = viewWidth.tabletMinus && (
    <Suspense>
      <TabbarMobile className={viewWidth.tabletMinus.className} />
    </Suspense>
  );

  const DesktopTabbar = viewWidth.tabletPlus && (
    <SplitCol
      fixed
      width={280}
      maxWidth={280}
      autoSpaced
      className={viewWidth.tabletPlus.className}
    >
      <Suspense>
        <TabbarDesktop />
      </Suspense>
    </SplitCol>
  );

Из того, что заметила - Tabbar ещё необходимо вкладывать в Epic,…

Replies: 2 comments 13 replies

Comment options

You must be logged in to vote
2 replies
@scffs
Comment options

@scffs
Comment options

Comment options

You must be logged in to vote
11 replies
@scffs
Comment options

@BlackySoul
Comment options

Answer selected by scffs
@scffs
Comment options

@scffs
Comment options

@BlackySoul
Comment options

@scffs
Comment options

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants